curl --request POST \
--url https://api.example.com/concat/plus-concat \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"concatCode": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"concatSlug": "<string>",
"languageID": 1
}
'{
"success": true,
"data": "<unknown>"
}Create a ‘plus-ism’ record for an iser for the specified concat. We call it a ‘plus-ism’ broadly speaking to adhere to uniform language for front-end experiences, but in reality, it’s a ‘plus-concat’.
curl --request POST \
--url https://api.example.com/concat/plus-concat \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"concatCode": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"concatSlug": "<string>",
"languageID": 1
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.