Listar motoristas

Lista todos os motoristas cadastrados na conta (autenticada via `x-abbiamo-seller-group-key`).

Header obrigatório. Toda chamada exige o header x-abbiamo-seller-group-key. Preencha-o no canto superior direito desta página ou veja como obter a sua chave.

GET
/v1/drivers
x-abbiamo-seller-group-key<token>

In: header

Query Parameters

page_size?string

Quantidade de resultados por página

page?string

Número da página

Header Parameters

x-abbiamo-seller-group-key*string

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/drivers" \  -H "x-abbiamo-seller-group-key: string"
"{\n\t\"page\": 1,\n\t\"page_size\": 1,\n\t\"total_pages\": 1,\n\t\"has_next_page\": true,\n\t\"total_results\": 1,\n\t\"results\": [\n\t\t{\n\t\t\t\"id\": \"038050d8-c8b1-4af6-9e47-c6g9109b17dn\",\n\t\t\t\"name\": \"Teste motorista\",\n\t\t\t\"document_number\": \"63501435070\",\n\t\t\t\"phone\": \"84988090646\",\n\t\t\t\"active\": true\n\t\t}\n\t]\n}"
"{\n\t\"status_code\": 400,\n\t\"timestamp\": \"2026-03-20T14:42:32.311Z\",\n\t\"message\": \"page_size cannot be greater than 100, received 101\",\n\t\"code\": \"INVALID_PARAMS\",\n\t\"error_id\": \"f68ad5cb-2715-42e2-85cf-6741873ea9ca\",\n\t\"params\": {\n\t\t\"page_size\": 101\n\t}\n}"