POST
Delete multiple tags from proxies
Removes the specified tags from the given proxies.
Authorizations
Name | Type | Required | Description |
---|---|---|---|
bearerAuth | http | Yes | Bearer token for authentication. Include in the Authorization header as 'Bearer <token>'. The token can be obtained through your account dashboard. |
Request Body
Required: Yes
Description: List of objects containing proxy tag IDs to be deleted.
Name | Type | Required | Description |
---|---|---|---|
(root array) object[] No Array of objects with a single field, proxyTagId, indicating which tag to delete. ▼ Show child attributes |
curl --request POST \
--url https://globalbyte.io/api/v1/proxies/tags/delete \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
--header 'content-type: application/json' \
--data '[{"proxyTagId":"123e4567-e89b-12d3-a456-426614174014"},{"proxyTagId":"123e4567-e89b-12d3-a456-426614174015"}]'
Responses
Code: 200
Description: Tags deleted successfully
Content Type: application/json
Name | Type | Required | Description |
---|---|---|---|
message string No A confirmation message for successfully deleting tags. |
Code: 400
Description: Bad request.
Content Type: application/json
Name | Type | Required | Description |
---|---|---|---|
message string No Human-readable message describing the bad request. |
Code: 401
Description: Unauthorized access.
Content Type: application/json
Name | Type | Required | Description |
---|---|---|---|
message string No Human-readable message describing the unauthorized error. |
Code: 500
Description: Error response.
Content Type: application/json
Name | Type | Required | Description |
---|---|---|---|
message string No Human-readable message describing the error. |
{
"message": "Tags deleted successfully"
}
{
"message": "Invalid input provided."
}
{
"message": "API token missing from headers."
}
{
"message": "Error message"
}