v1.0
OAS 3.0.3

Universal CRM API Documentation

Development documentation

Server: https://crm.universal.rollout.com/api
Client Libraries

People

/people

Query Parameters
  • next
    Type:string
  • offset
    Any of
    • Type:string Format: numeric
      default: 
      0
  • limit
    Type:number
Responses
Request Example forGET/people
curl https://crm.universal.rollout.com/api/people
{
  "_metadata": {
    "collection": "…",
    "offset": 1,
    "limit": 1,
    "total": 1,
    "next": "…",
    "nextLink": "…"
  },
  "people": [
    {
      "id": "…",
      "name": "…",
      "firstName": "…",
      "lastName": "…",
      "assignedUserId": "…",
      "stage": "…",
      "stageId": "…",
      "tags": [
        "…"
      ],
      "originalIds": {
        "^(.*)$": 1
      },
      "original": {
        "^(.*)$": {
          "^(.*)$": null
        }
      },
      "created": "…",
      "updated": "…",
      "addresses": [
        {
          "type": "…",
          "street": "…",
          "city": "…",
          "state": "…",
          "code": "…",
          "country": "…"
        }
      ],
      "emails": [
        {
          "value": "…",
          "type": "…",
          "status": "…",
          "isPrimary": true
        }
      ],
      "phones": [
        {
          "value": "…",
          "type": "…",
          "status": "…",
          "isPrimary": true
        }
      ],
      "source": "…",
      "contactTypes": [
        "…"
      ],
      "ANY_ADDITIONAL_PROPERTY": "anything"
    }
  ]
}

Notes (Collapsed)

Users (Collapsed)