Company logoTrust Center Documentation

List all contacts

Retrieve all contacts for your tenant, including their review status and account information

GET
/api/v1/contacts
AuthorizationBearer <token>

In: header

Response Body

fetch("https://app.orbiqhq.com/api/v1/contacts", {  method: "GET"})
{
  "contacts": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "email": "john.doe@example.com",
      "first_name": "John",
      "last_name": "Doe",
      "title": "Security Manager",
      "review_status": "approved",
      "account": {},
      "tenant": "string",
      "directus_user": "string",
      "documents": [
        {
          "documents_id": "string"
        }
      ],
      "access_requests": [
        {}
      ]
    }
  ]
}
Empty
Empty

How is this guide?