Provides a list of Address Book contacts for the logged in user.
Client Servlet | Server Servlet | HTTP Methods Supported | Requires Authentication |
---|---|---|---|
CRAddressBookAPI | None. | GET, POST | Yes. |
https://secure2.convio.net/organization/site/CRAddressBookAPI?method=getAddressBookContacts &api_key=value &v=value [ &auth=value ] [ ¢er_id=value ] [ &error_redirect=value ] [ &redirect=value ] [ &response_format=xml | json ] [ &sign_redirects=value ] [ &source=value ] [ &sub_source=value ] [ &success_redirect=value ] [ &suppress_response_codes=value ] [ &list_ascending=value ] [ &list_category_id=value ] [ &list_filter_column=value ] [ &list_filter_text=value ] [ &list_page_offset=value ] [ &list_page_size=value ] [ &list_record_offset=value ] [ &list_sort_column=value ] [ &auth=value ] [ &sso_auth_token=value ]
See topic Common Parameters.
Optional. Whether the list should be sorted in ascending order.
Type xsd:boolean.
Default is true.
Optional. Security Category filter.
Type xsd:integer.
Optional. The database column that will be used to match the filter text (used with list_filter_text
Type xsd:string.
Optional. The text that will be used to filter results.
Type xsd:string.
Optional. The requested page number (used with list_page_size
zero
list_record_offset
list_page_offset
Type xsd:integer.
Optional. The number of results in each page (used with list_record_offset
list_page_offset
Type xsd:integer.
Default is 25
Optional. The requested initial record number (used with list_page_size
zero
list_record_offset
list_page_offset
Type xsd:integer.
Optional. The column to sort with (used with list_ascending
Type xsd:string.
Optional. You must provide either this parameter or the sso_auth_token
[[S86]]
Optional. You must provide either this parameter or the auth
See topic HTTP Status Codes.
<?xml version="1.0" encoding="UTF-8"?>
<getAddressBookContactsResponse xsi:schemaLocation="http://convio.com/crm/v1.0 http://service.convio.net/xmlschema/crm.public.v1.xsd" xmlns="http://convio.com/crm/v1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<addressBookContact>
<id>101</id>
<firstName>User1First</firstName>
<lastName>User1Last</lastName>
<email>user1@example.com</email>
<group>
<id>201</id>
<name>Group 1</name>
</group>
</addressBookContact>
<addressBookContact>
<id>102</id>
<firstName>User2First</firstName>
<lastName>User2Last</lastName>
<email>user2@example.com</email>
<group>
<id>202</id>
<name>Group 2</name>
</group>
<group>
<id>202</id>
<name>Group 2</name>
</group>
</addressBookContact>
</getAddressBookContactsResponse>
{
"getAddressBookContactsResponse": {
"addressBookContact": [
{
"firstName": "User1First",
"lastName": "User1Last",
"id": "101",
"email": "user1@example.com",
"group": {
"name": "Group 1",
"id": "201"
}
},
{
"firstName": "User2First",
"lastName": "User2Last",
"id": "102",
"email": "user2@example.com",
"group": [
{
"name": "Group 2",
"id": "202"
},
{
"name": "Group 2",
"id": "202"
}
]
}
]
}
}