GET
/
customer
/
limits
/
session
curl --request GET \
  --url https://api.pingnetwork.io/customer/v2/customer/limits/session \
  --header 'Authorization: <api-key>'
{
  "id": "sl_123456789",
  "created_at": "2025-02-28T14:30:00.000Z",
  "updated_at": "2025-02-28T14:30:00.000Z",
  "downloaded_bytes": 10737418240,
  "uploaded_bytes": 5368709120,
  "download_speed": 31457280,
  "upload_speed": 20971520
}

Authorizations

Authorization
string
header
required

Response

200
application/json
Session limits retrieved successfully
id
string
required

Unique identifier for the session limits

Example:

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

10737418240

uploaded_bytes
integer

Upload limit in bytes

Example:

5368709120

download_speed
integer

Download speed limit in bytes/s

Example:

31457280

upload_speed
integer

Upload speed limit in bytes/s

Example:

20971520