Gatana Documentation
RoutesProfilesProfileidClaim mappings

/profiles/{profileId}/claim-mappings

POST
/profiles/{profileId}/claim-mappings
AuthorizationBearer <token>

In: header

Path Parameters

profileId*string

Request Body

application/json

claimKey*string
Length1 <= length <= 255
claimValue*string
Length1 <= length <= 255

Response Body

application/json

curl -X POST "https://YOUR_ORG_ID.gatana.ai/api/v1/profiles/string/claim-mappings" \  -H "Content-Type: application/json" \  -d '{    "claimKey": "string",    "claimValue": "string"  }'
{
  "claimMapping": {
    "id": "string",
    "tenantId": "string",
    "profileId": "string",
    "claimKey": "string",
    "claimValue": "string",
    "createdAt": "string"
  }
}