Retrieve a contact list

get

/api/REST/1.0/assets/contact/list/{id}

Retrieves the contact list specified by the id parameter.

Request

Supported Media Types
Path Parameters
Query Parameters
  • Level of detail returned by the request. Eloqua APIs can retrieve entities at three different levels of depth: minimal, partial, and complete. Any other values passed are reset to complete by default. For more information, see Request depth.
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : ContactList
Type: object
Title: ContactList
Show Source
Nested Schema : membershipAdditions
Type: array
The number of contact membership additions in the contact list.
Show Source
Nested Schema : membershipDeletions
Type: array
The number of contact membership deletions in the contact list.
Show Source

400 Response

Bad request. See Status Codes for information about other possible HTTP status codes.

401 Response

Unauthorized. See Status Codes for information about other possible HTTP status codes.

403 Response

Forbidden. See Status Codes for information about other possible HTTP status codes.

404 Response

The requested resource was not found. See Status Codes for information about other possible HTTP status codes.

500 Response

The service has encountered an error. See Status Codes for information about other possible HTTP status codes.
Back to Top

Examples

Retrieve the contact list asset with Id #51:


GET /api/REST/1.0/assets/contact/list/51?depth=complete
			

Response:


{
    "type":"ContactList",
    "id":"51",
    "createdAt":"1306510214",
    "depth":"complete",
    "description":"",
    "folderId":"360",
    "name":"Example Contact List",
    "permissions":"fullControl",
    "updatedAt":"1306510214",
    "count":"0",
    "dataLookupId":"e67cec9d-1125-4efd-b0fc-e8c464204b8a",
    "scope":"global"
}
			
Back to Top