Retrieve an email footer

get

/api/REST/1.0/assets/email/footer/{id}

Retrieves the email footer 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 : 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 email footer asset with Id #8:


GET /api/REST/1.0/assets/email/footer/8?depth=complete
			

Request body:


{
    "name":"Test Footer",
    "body":"<p>Here is some text.</p>"
}
			

Response:


{
    "type": "EmailFooter",
    "id": "13",
    "createdAt": "1469450883",
    "createdBy": "9",
    "depth": "complete",
    "folderId": "1271",
    "name": "Test NEW Update Footer",
    "permissions": "fullControl",
    "updatedAt": "1469451209",
    "updatedBy": "9",
    "body": "<p>Here is some new text.</p>",
    "fieldMerges": [],
    "hyperlinks": [],
    "text": "\r\nHere is some new text.\r\n\r\n"
}
			
Back to Top