Retrieve an email group

get

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

Retrieves the email group 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 : EmailGroup
Type: object
Title: EmailGroup
Show Source
Nested Schema : emailIds
Type: array
Array containing the unique identifiers of the emails in the email group.
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 group asset with Id #4:


GET /api/REST/1.0/assets/email/group/4?depth=complete
			

Response:


{
    "type":"EmailGroup",
    "id":"4",
    "depth":"complete",
    "name":"Testing Area",
    "permissions":"fullControl",
    "emailFooterId":"1",
    "emailHeaderId":"1",
    "emailIds":[
        "61",
        "57",
        "58",
        "60",
        "62",
        "59"
    ],
    "isVisibleInOutlookPlugin":"false",
    "isVisibleInPublicSubscriptionList":"false",
    "subscriptionLandingPageId":"1",
    "subscriptionListDataLookupId":"9e07fc25-0ed5-4136-acf9-e31fe3e32806",
    "subscriptionListId":"8",
    "unSubscriptionListDataLookupId":"d46d51d2-ae11-4adc-b84e-c545472d4a10",
    "unSubscriptionListId":"9",
    "unsubscriptionLandingPageId":"3"
}
			
Back to Top