Retrieve a list of email footers

get

/api/REST/1.0/assets/email/footers

Retrieves all email footers that match the criteria specified by the request parameters.

Request

Supported Media Types
Query Parameters
  • Maximum number of entities to return. Must be less than or equal to 1000 and greater than or equal to 1.
  • 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 minimal by default.
  • Unix timestamp for the date and time the email footer was last updated.
  • Specifies the field by which list results are ordered.
  • Specifies which page of entities to return (the count parameter defines the number of entities per page). If the page parameter is not supplied, 1 will be used by default.
  • Specifies the search criteria used to retrieve entities. See the tutorial for information about using this parameter.
Back to Top

Response

Supported Media Types

200 Response

OK.
Body ()
Root Schema : QueryResultFooter
Type: object
Title: QueryResultFooter
Show Source
Nested Schema : elements
Type: array
Array of footer fields.
Show Source
Nested Schema : EmailFooter
Type: object
Title: EmailFooter
Show Source
Nested Schema : fieldMerges
Type: array
A list of associated Field Merges.
Show Source
Nested Schema : FieldMerge
Type: object
Title: FieldMerge
Show Source
Nested Schema : Hyperlink
Type: object
Title: Hyperlink
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 first 2 email headers in your database:


GET /api/REST/1.0/assets/email/footers?count=2
			

Response:


{
    "elements":[
        {
            "type":"EmailFooter",
            "id":"1",
            "depth":"minimal",
            "folderId":"315",
            "name":"Test Footer",
            "permissions":"fullControl",
            "updatedAt":"1243267870"
        },
        {
            "type":"EmailFooter",
            "id":"3",
            "depth":"minimal",
            "folderId":"315",
            "name":"Test Footer 2",
            "permissions":"fullControl",
            "updatedAt":"1243267766"
        }
    ],
    "page":1,
    "pageSize":2,
    "total":4
}
			
Back to Top