curl --request POST \
--url https://api.example.com/api/Tags/Values/{entityId}/{tagTypeId} \
--header 'Content-Type: application/json' \
--data '
{
"values": [
{
"tagID": 123,
"entityID": 123,
"playerID": 123,
"recruiterID": 123,
"recruiterName": "<string>",
"agencyID": 123,
"tagTypeID": 123,
"tagTypeName": "<string>",
"countTotal": 123,
"tag": "<string>",
"createdDate": "2023-11-07T05:31:56Z",
"lastTagged": "2023-11-07T05:31:56Z",
"isAgency": 123
}
],
"deletedIds": [
123
]
}
'curl --request POST \
--url https://api.example.com/api/Tags/Values/{entityId}/{tagTypeId} \
--header 'Content-Type: application/json' \
--data '
{
"values": [
{
"tagID": 123,
"entityID": 123,
"playerID": 123,
"recruiterID": 123,
"recruiterName": "<string>",
"agencyID": 123,
"tagTypeID": 123,
"tagTypeName": "<string>",
"countTotal": 123,
"tag": "<string>",
"createdDate": "2023-11-07T05:31:56Z",
"lastTagged": "2023-11-07T05:31:56Z",
"isAgency": 123
}
],
"deletedIds": [
123
]
}
'Was this page helpful?