Skip to main content
POST
/
auth
/
external
/
authorize
cURL
curl --request POST \
  --url https://consumer.fanfare.io/api/auth/external/authorize \
  --header 'Content-Type: application/json' \
  --data '
{
  "issuer": "<string>",
  "provider": "<string>",
  "subject": "<string>"
}
'
{
  "exchangeCode": "<string>",
  "expiresAt": "<string>"
}

Body

application/json
issuer
string
required
provider
string
required
subject
string
required
claims
object

Response

Exchange code created

exchangeCode
string
required
expiresAt
string
required