GET
/
customer
/
limits
/
client
curl --request GET \
  --url https://api.pingnetwork.io/customer/v2/customer/limits/client \
  --header 'Authorization: <api-key>'
{
  "id": "cl_123456789",
  "created_at": "2025-02-28T14:30:00.000Z",
  "updated_at": "2025-02-28T14:30:00.000Z",
  "downloaded_bytes": 549755813888,
  "uploaded_bytes": 549755813888,
  "download_speed": 52428800,
  "upload_speed": 52428800,
  "max_sessions": 5,
  "max_reconnections": 20
}

Authorizations

Authorization
string
header
required

Response

200
application/json
Client limits retrieved successfully
id
string
required

Unique identifier for the client limits

Example:

"cl_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:

549755813888

uploaded_bytes
integer

Upload limit in bytes

Example:

549755813888

download_speed
integer

Download speed limit in bytes/s

Example:

52428800

upload_speed
integer

Upload speed limit in bytes/s

Example:

52428800

max_sessions
integer

Maximum concurrent sessions

Example:

5

max_reconnections
integer

Maximum reconnections in a session

Example:

20