curl --request POST \
--url https://api.example.com/admin/pairings/paired/details \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": 1,
"pairingID": 123,
"concatID": 123
}
'{
"success": true,
"data": "<unknown>"
}Save pairing by either the pairing ID or the concat ID.
curl --request POST \
--url https://api.example.com/admin/pairings/paired/details \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": 1,
"pairingID": 123,
"concatID": 123
}
'{
"success": true,
"data": "<unknown>"
}