GET
/
api
/
v1
/
workspaces
/
{workspaceUuid}
/
contacts
{
  "current_page": 1,
  "last_page": 10,
  "per_page": 15,
  "total": 150,
  "next_page_url": "https://api.example.com/api/v1/workspaces?page=2",
  "prev_page_url": null,
  "first_page_url": "https://api.example.com/api/v1/workspaces?page=1",
  "last_page_url": "https://api.example.com/api/v1/workspaces?page=10",
  "path": "https://api.example.com/api/v1/workspaces",
  "from": 1,
  "to": 15,
  "data": [
    {
      "uuid": "550e8400-e29b-41d4-a716-446655440000",
      "email": "john@pirateinc.com",
      "first_name": "John",
      "last_name": "Doe",
      "position": "CEO",
      "department": "IT",
      "profiles": [
        {
          "name": "Twitter",
          "handle": "@pirateinc",
          "url": "https://twitter.com/pirateinc"
        }
      ]
    }
  ],
  "success": true
}

Authorizations

Authorization
string
header
required

Enter your personal access token (PAT) to authenticate

Path Parameters

workspaceUuid
string
required

The UUID of the workspace

Query Parameters

domain
string

Either organisation_uuid or domain must be provided

organisation_uuid
string

Either organisation_uuid or domain must be provided

page
integer

The page number for pagination

size
integer

The number of organisations per page

Response

200
application/json
A paginated list of the contacts
current_page
integer
last_page
integer
per_page
integer
total
integer
next_page_url
string | null
prev_page_url
string | null
first_page_url
string | null
last_page_url
string | null
path
string | null
from
integer | null
to
integer | null
data
object[]

Representation of an organisation contact

success
boolean