Gatana Documentation
RoutesTeamsTeamidClaim mappings

/teams/{teamId}/claim-mappings

POST
/teams/{teamId}/claim-mappings
AuthorizationBearer <token>

In: header

Path Parameters

teamId*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/teams/string/claim-mappings" \  -H "Content-Type: application/json" \  -d '{    "claimKey": "string",    "claimValue": "string"  }'
{
  "claimMapping": {
    "id": "string",
    "tenantId": "string",
    "teamId": "string",
    "claimKey": "string",
    "claimValue": "string",
    "createdAt": "string"
  }
}