List Partner contacts


                https://api.ocamba.com/v1/hood/partners/{id}/contacts
            

Returns a list of Partner contacts


Name
Description
idstringrequired
Unique resource identifier.


Example: 12345

200 - OK
Arrow
Name
Description
An array of all created items.
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
Contact value.


Example: [email protected]

totalinteger
A total number of items.


Example: 3
tip
1 If you don't know the partner id, list the partners to find it.
200 Arrow
{
    "total": 3,
    "items": [
        {
            "id": "84de7027-4306-4d59-b485-a89c31cb10fa",
            "type": "email",
            "value": "[email protected]"
        },
        {
            "id": "47e27c2e-e662-4215-9969-3063292c6ed8",
            "type": "phone",
            "value": "43164324"
        },
        {
            "id": "cfff331c-4a10-4b4b-be77-8ce1dc7fc3d0",
            "type": "mobile",
            "value": "43164324"
        }
    ]
}
{
  "total": 3,
  "items": [
    {
      "id": "95eb301b-6aaf-42ad-a219-ccbd5f4d3d2b",
      "value": "[email protected]",
      "type": "email"
    }
  ]
}