Skip to main content
DELETE
/
api
/
Tags
/
{entityId}
/
Bulk
Remove tags from specific records.
curl --request DELETE \
  --url https://api.example.com/api/Tags/{entityId}/Bulk \
  --header 'Content-Type: application/json' \
  --data '
{
  "tags": [
    {
      "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
    }
  ],
  "recordIds": [
    123
  ]
}
'
[
  {
    "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
  }
]

Path Parameters

entityId
integer<int32>
required

Body

application/json
tags
object[] | null
recordIds
integer<int32>[] | null

Response

200 - application/json

OK

tagID
integer<int32>
entityID
integer<int32>
playerID
integer<int32>
recruiterID
integer<int32>
recruiterName
string | null
agencyID
integer<int32>
tagTypeID
integer<int32>
tagTypeName
string | null
countTotal
integer<int32>
tag
string | null
createdDate
string<date-time>
lastTagged
string<date-time>
isAgency
integer<int32>