Skip to main content
POST
/
orders
/
{order_id}
/
tags
Update proxy tags
curl --request POST \
  --url https://api.proxyjam.com/public/v1/orders/{order_id}/tags \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "tags": [
    {}
  ]
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.proxyjam.com/llms.txt

Use this file to discover all available pages before exploring further.

Replaces the proxy’s tag list. Tags are free-form strings for organising and filtering proxies in your own tooling; they are not interpreted by the API.

Path parameters

order_id
string
required
UUID of the order backing the mobile rotating proxy.

Request body

tags
array
required
Replacement tag list. Send an empty array to clear all tags.

Response

Live snapshot of the mobile rotating proxy with the updated tag list. Same shape as the mobile branch of Get order.

Example

curl -X POST "https://api.proxyjam.com/public/v1/orders/997b4450-e7ae-4ad9-8a25-996e582049c9/tags" \
  -H "X-API-Key: pj_AbCdEf..." \
  -H "Content-Type: application/json" \
  -d '{"tags": ["scrape", "prod"]}'