PATCH
/
customer
/
limits
/
global
curl --request PATCH \
  --url https://api.pingnetwork.io/customer/v2/customer/limits/global \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "downloaded_bytes": 1099511627776,
  "uploaded_bytes": 1099511627776,
  "download_speed": 104857600,
  "upload_speed": 104857600
}'
{
  "id": "gl_123456789",
  "created_at": "2025-02-28T14:30:00.000Z",
  "updated_at": "2025-02-28T14:30:00.000Z",
  "downloaded_bytes": 1099511627776,
  "uploaded_bytes": 1099511627776,
  "download_speed": 104857600,
  "upload_speed": 104857600
}

Authorizations

Authorization
string
header
required

Body

application/json
Global limits update request
downloaded_bytes
integer

Download limit in bytes

Example:

1099511627776

uploaded_bytes
integer

Upload limit in bytes

Example:

1099511627776

download_speed
integer

Download speed limit in bytes/s

Example:

104857600

upload_speed
integer

Upload speed limit in bytes/s

Example:

104857600

Response

200
application/json
Global limits updated successfully
id
string
required

Unique identifier for the global limits

Example:

"gl_123456789"

created_at
string
required

Creation timestamp

Example:

"2025-02-28T14:30:00.000Z"

updated_at
string
required

Last update timestamp

Example:

"2025-02-28T14:30:00.000Z"

downloaded_bytes
integer

Download limit in bytes

Example:

1099511627776

uploaded_bytes
integer

Upload limit in bytes

Example:

1099511627776

download_speed
integer

Download speed limit in bytes/s

Example:

104857600

upload_speed
integer

Upload speed limit in bytes/s

Example:

104857600