View Account contact


                https://api.ocamba.com/v2/ocamba/accounts/{id}/contacts/{contact_id}
            

Retrieves the details of an Account contact that has previously been created if a valid identifier was provided


Name
Description
account_idstringrequired
Unique account identifier defined as a path parameter.


Example: 12345

contact_idstringrequired
Unique identifier defined as a path parameter.


Example: 95eb301b-6aaf-42ad-a219-ccbd5f4d3d2b

200 - OK
Arrow
Name
Description
An array of all created items.
Account Contact
Name
Description
idstring (uuid)
A unique identifier generated by the Ocamba platform.


Example: 95eb301b-6aaf-42ad-a219-ccbd5f4d3d2b

typestring
Describes type of the contact.


Example: email

Possible values: phone | mobile | skype | sip | email | website

valuestring
The actual contact, based on contact type. For example, if contact type is email, the value must be a valid email address.


Example: [email protected]

totalinteger
A total number of items.


Example: 1
200 Arrow
{
  "total": 1,
  "items": [
    {
      "id": "95eb301b-6aaf-42ad-a219-ccbd5f4d3d2b",
      "type": "email",
      "value": "[email protected]"
    }
  ]
}