🔑API Key

Steps to register your website by sending an API request via Postman

  1. Install Postman or run in browser ( link )

  2. Open a new tab in Postman

  3. Select request type POST

  4. Enter request URL https://login.vulalabs.com/oauth/register

  5. Select Body then raw then JSON

  6. Input your Company information in the body of the request

{
"email": "example@email.com",
"name": "example",
"redirectUris": ["https://example.com/oauth/callback"],
"homepageUri": "https://example.com"
}

Postman Request Example

Successful Registration

If you successfully registered your website, the following message will appear in the response.

{
    "clientId": "xxxxxxxxxxxxxxxxxxxx",
    "clientSecret": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
    "redirectUris": [
        "https://example.com/oauth/callback"
    ],
    "grants": [
        "authorization_code",
        "refresh_token"
    ]
}

Registration Errors

Error handling and messaging will appear in the response.

Last updated