GET
/
org
/
sdkClient
/
{sdkClientId}
curl --request GET \
  --url https://svc.sandbox.anon.com/org/sdkClient/{sdkClientId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "organizationId": "<string>",
  "auth": {
    "type": "userPool",
    "userPoolId": "<string>",
    "oauthConfig": {
      "logoUrl": "<string>",
      "chromeExtensionId": "<string>",
      "redirectUrls": [
        "<string>"
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

userId
string | null

The anon user id of the user making the request

orgId
string | null

The anon org id of the user making the request

Path Parameters

sdkClientId
string
required

ID of the SdkClient.

Response

200 - application/json
SdkClient details retrieved successfully.
id
string
required
name
string
required
description
string
required
organizationId
string
required
auth
object
required

Authentication configuration for an SDK client

Was this page helpful?