GET api/REST/2.0/assets/email/signature/rule/{id}

Retrieves the signature rule asset specified by the {id} parameter.

Request parameters

Required

Name

Type

Description

Possible values
id

integer

Unique identifier of the email signature rule.

 

Optional

Name

Type

Description

Possible values
depth

string

Level of detail returned by the request. The default will be complete. Learn more about the depth parameter.

  • minmal
  • partial
  • complete

Response parameters

Name

Type

Description

Possible values

type

string

The asset's type in Eloqua.

EmailSignatureRule

id string Id of the signature rule.  
createdAt string The date and time the email signature rule was created.  
createdBy string The login id of the user who created the signature rule.  
depth string The request's level of detail.
  • minmal
  • partial
  • complete

name

string

The name of the signature rule.

 
updatedAt string Unix timestamp for the date and time the signature rule was last updated.  
updatedBy string The login id of the user that last updated the signature rule.  
contactFieldId string The ID of the field used to identify the email sender  
defaultSenderId string The ID of the user used as the sender of the email  
isPersonalizeFromAddress string Whether or not the email sender's "From" address is customized in the email header  
isPersonalizeFromName string Whether or not the email sender's "Display Name" is customized in the email header  
isPersonalizeReplyAddress string Whether or not the "Reply-To Address" is customized in the email header  
isPersonalizeReplyName string Whether or not the "Reply-To Display Name" is customized in the email header  

Example

Retrieve a signature rule with the id = 5.

GET /assets/email/signature/rule/5

Response:

{
  "type": "EmailSignatureRule",
  "id": "2",
  "createdAt": "1417724000",
  "createdBy": "12",
  "depth": "complete",
  "name": "EC Test Signature Rule",
  "updatedAt": "1471936138",
  "updatedBy": "71",
  "contactFieldId": "100022",
  "defaultSenderId": "6",
  "isPersonalizeFromAddress": "True",
  "isPersonalizeFromName": "True",
  "isPersonalizeReplyAddress": "True",
  "isPersonalizeReplyName": "True"
}

Learn more

Signature rules API

Application API