GET api/ContactList/{user}/{contactList}/{contact}

It returns a contact of a contact list.

URL request: http://login.sendservice.eu/MultiChannelAPI/Api/Contactlist/{user}/{contactList}/{contact}


URL Parameters

ParameterDescriptionRequired

{user}

It is the GUID of the user. It is inside the Personal Information of the user on SENDService

yes

{contactList}

It is the ID of the contact list on SENDService

yes
{contact}

Is the ID of the contact that you will see on your response.

yes

Response

It returns all the fields on the contact on your request. Here are some fields:

ParameterDescriptionObject / Right format

Contact

It represents the ID of your contactString
Name

It represents the name of your contact list

String

...

Other fields{
"ContactId": 48765710,
"FirstName": "Name",
"LastName": null,
"MobilePhone": null,
"HomePhone": "0039....",
"Fax": null,
"Email": null,
"Address": "Via ",
"WebSite": "http://www.sendservice.eu/",
"Category": "Cat",
"InsertDate": "2017-12-15T12:20:09+01:00"
},
Example Application/json, Text/json
{
    "ContactId": 48765714,
    "FirstName": "Contact Name",
    "LastName": null,
    "MobilePhone": null,
    "HomePhone": "+39....",
    "Fax": null,
    "Email": null,
    "Address": "Via Centegnano, 4A, 37036 Centegnano VR, Italia",
    "Category": "Plumber",
    "InsertDate": "2017-12-15T12:20:18+01:00"
}