Skip to main content

List

Overview

You can get your contact list with this API request.
Contact will be used in sign flow, to send document to.
Then that person will receive sign request and will sign or reject.

API detail

Request

  • URL: /contacts/?page=1&page_size=10
  • Method: GET
  • Query Params:
{
"page": 1,
"page_size": 10,
}

Response

Success

  • Status code: 200
  • Body:
{
"count": 204,
"next": "https://api.legale.io/api/v2/contacts/?page=2&page_size=10",
"previous": null,
"results": [
{
"id": 2620,
"email": "test.contact@legale.io",
"company_email": null,
"firstname": "Test",
"lastname1": "Contact",
"lastname2": null,
"rut": "11222333-4",
"phone": null,
"country_code": null,
"is_user": true,
"is_external": false,
"created_at": "2025-06-27T17:32:52.121284Z",
"updated_at": "2025-06-27T17:32:52.121346Z"
},
// ...
],
}