Chapter 1 Setting up oauth client

This chapter goes into the setting up of the oauth client for user provisioning.

circle-info

Our default API documentation has additional material related to setting upOAuth.

Endpoint:

POST /v1/user/{user_id}/oauth-client

{}

Response:

{
    "Response": [
        {
            "Id": {
                "id": 789
            }
        }
    ]
}

Step 2: Read OAuth Client Details

Endpoint:

Response:

Fields:

Field
Type
Description

id

integer

Unique identifier for the OAuth client

status

string

Status (e.g., ACTIVE)

display_name

string

Human-readable name

client_id

string

OAuth client ID

secret

string

OAuth client secret

callback_url

array

Registered callback URLs


Step 3: Register OAuth Callback URL

Endpoint:

Response:

Parameter
Type
Required
Description

url

string

Yes

HTTPS callback URL to register


Step 4: Read Callback URL Details

Endpoint:

Response:

Last updated

Was this helpful?