Retrieve a list of email groups

get

/api/bulk/2.0/emailGroups

Retrieves a list of email groups.

Request

Supported Media Types
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

OK.
Body ()
Root Schema : EmailGroupSearchResponse
Type: object
Title: EmailGroupSearchResponse
Show Source
Nested Schema : items
Type: array
Title: items
Show Source
Nested Schema : EmailGroup
Type: object
Title: EmailGroup
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.

409 Response

There was a conflict. See Status Codes for information about other possible HTTP status codes.

410 Response

The requested resource is no longer available. See Status Codes for information about other possible HTTP status codes.

412 Response

The resource you are attempting to delete has dependencies, and cannot be deleted. See Status Codes for information about other possible HTTP status codes.

413 Response

Storage space exceeded. See Status Codes for information about other possible HTTP status codes.

500 Response

The service has encountered an internal server error. See Status Codes for information about other possible HTTP status codes.

503 Response

There was a timeout processing the request. See Status Codes for information about other possible HTTP status codes.
Back to Top

Examples

Retrieve the first 2 email groups:


GET /emailGroups?limit=2
			

Response:


{
    "items":[
        {
            "name":"BP - Templates",
            "statement":"{{EmailGroup[6]}}",
            "id":"/emailGroups/6",
            "updatedBy":"Deploy.User",
            "updatedAt":"2011-05-27T16:29:37.6270000Z"
        },
        {
            "name":"Test dsfgh5sy54667567",
            "statement":"{{EmailGroup[18]}}",
            "id":"/emailGroups/18",
            "createdBy":"API.User",
            "createdAt":"2015-05-21T20:32:18.0730000Z",
            "updatedBy":"API.User",
            "updatedAt":"2015-05-21T20:32:18.0730000Z"
        }
    ],
    "totalResults":16,
    "limit":2,
    "offset":0,
    "count":2,
    "hasMore":true
}
			
Back to Top