GET
/
org
/
userPool
/
{userPoolId}
curl --request GET \
  --url https://svc.sandbox.anon.com/org/userPool/{userPoolId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "authorization": {
    "jwksUri": "<string>",
    "idClaim": "<string>"
  },
  "organizationId": "<string>",
  "hosted": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

userPoolId
string
required

ID of the UserPool.

Response

200 - application/json
UserPool details retrieved successfully.
id
string
required
name
string
required
description
string
required
authorization
object
required
organizationId
string
required
hosted
boolean
required

Was this page helpful?