Skip to main content
GET
/
v1
/
client
/
{id}
Get client details
curl --request GET \
  --url https://connect.provisionapp.io/v1/client/{id} \
  --header 'x-api-key: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "partnerName": "<string>",
  "marketingOptOut": true,
  "emails": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "value": "jsmith@example.com",
      "label": "<string>",
      "isPrimary": true
    }
  ],
  "phoneNumbers": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "value": "<string>",
      "ext": 123,
      "label": "<string>",
      "isPrimary": true
    }
  ],
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

Send the API key in the x-api-key header.

Path Parameters

id
string
required
Pattern: ^ovcid-.*$
Example:

"ovcid-22222222-2222-4222-8222-222222222222"

Response

Client details

id
string
required
Pattern: ^ovcid-.*$
name
string
required
firstName
string
required
lastName
string
required
createdAt
string<date-time>
required
partnerName
string
marketingOptOut
boolean
emails
object[]
phoneNumbers
object[]
updatedAt
string<date-time>