Перейти к основному содержанию
GET
/
v1
/
crm
/
rental_points
/
{rental_id}
/
users
cURL
curl --request GET \
  --url https://api.example.com/v1/crm/rental_points/{rental_id}/users/
{
  "count": 123,
  "results": [
    {
      "id": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "user": 123,
      "active": true,
      "tenant": 123,
      "point": 123
    }
  ],
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2"
}

Параметры пути

rental_id
integer
обязательно

Параметры запроса

page
integer

A page number within the paginated result set.

pageSize
integer

Number of results to return per page.

Ответ

200 - application/json
count
integer
обязательно
Пример:

123

results
object[]
обязательно
next
string<uri> | null
Пример:

"http://api.example.org/accounts/?page=4"

previous
string<uri> | null
Пример:

"http://api.example.org/accounts/?page=2"