# List contacts Retrieve all contacts with basic pagination support Returns a paginated list of contacts. Default sort prioritizes last/first name. Real Example: bash curl --location 'https://{{host}}/v1/contacts' \ --header 'Authorization: bearer {{token}}' \ --header 'Content-Type: application/json' \ --data '{ "pageSize": 25, "page": 0 }' Endpoint: POST /gql/v1/contacts Version: 1.0.0 Security: BearerAuth ## Request fields (application/json): - `pageSize` (integer) Maximum number of contacts to return - `page` (integer) Number of records to skip for pagination ## Response 200 fields ## Response 400 fields ## Response 401 fields ## Response 500 fields