GET api/groups/{group}/contacts
Gives you a list of your contacts in a given contact group
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| group |
Group ID |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
List of contacts
Collection of ContactDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
Contact ID |
integer |
None. |
| OwnerID |
ID of account owning the contact |
string |
None. |
| Organization |
Contact company or other organization |
string |
None. |
| FirstName |
Contact first name |
string |
Required String length: inclusive between 0 and 100 |
| LastName |
Contact last name |
string |
String length: inclusive between 0 and 100 |
| Phone |
Contact phone number in E164 format |
string |
Required String length: inclusive between 0 and 16 Valid phonenumber |
|
Contact email adress |
string |
String length: inclusive between 0 and 50 |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"OwnerID": "sample string 2",
"Organization": "sample string 3",
"FirstName": "sample string 4",
"LastName": "sample string 5",
"Phone": "sample string 6",
"Email": "sample string 7"
},
{
"ID": 1,
"OwnerID": "sample string 2",
"Organization": "sample string 3",
"FirstName": "sample string 4",
"LastName": "sample string 5",
"Phone": "sample string 6",
"Email": "sample string 7"
}
]