POST
/
org
/
userPool
curl --request POST \
  --url https://svc.sandbox.anon.com/org/userPool \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "authorization": {
    "jwksUri": "<string>",
    "idClaim": "<string>"
  }
}'
{
  "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.

Body

application/json
name
string
required
description
string
required
authorization
object

Response

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

Was this page helpful?