Retrieve a list of programs

get

/api/rest/2.0/assets/programs

Retrieves a list of programs.

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. The default value is minimal.
  • The date and time the program 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 : QueryResultProgram
Type: object
Title: QueryResultProgram
Show Source
Nested Schema : elements
Type: array
Array of program fields.
Show Source
Nested Schema : Program
Type: object
Title: Program
Show Source
Nested Schema : elements
Type: array
A list of program elements.
Show Source
Nested Schema : permissions
Type: array
The permissions for the program granted to your current instance. This is a read-only property.
Show Source
Nested Schema : CampaignElement
Type: object
Title: CampaignElement
Show Source
Nested Schema : outputTerminals
Type: array
A list of the campaign element ids within the campaign. This is a read-only property.
Show Source
Nested Schema : permissions
Type: array
The permissions for the campaign element granted to your current instance. This is a read-only property.
Show Source
Nested Schema : Position
Type: object
Title: Position
Show Source
  • The campaign element's type. This is a read-only property.
  • The position of the campaign element on the x axis.
  • The position of the campaign element on the y axis.
Nested Schema : CampaignOutputTerminal
Type: object
Title: CampaignOutputTerminal
Show Source
Nested Schema : permissions
Type: array
The permissions for the campaign output terminal granted to your current instance.
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

The following examples demonstrate how to retrieve a list of programs using an HTTP request and cURL. For more information on requests, see API requests.

HTTP Request Example

Retrieve the first 2 programs in your database:


GET /api/REST/2.0/assets/programs?count=2
Content-Type: application/json 
			

Response:


{
  "elements": [
    {
      "type": "Program",
      "currentStatus": "Draft",
      "id": "40",
      "createdAt": "1476990583",
      "createdBy": "25",
      "depth": "minimal",
      "folderId": "3669",
      "name": "A Program Name",
      "permissions": [
        "Retrieve",
        "SetSecurity",
        "Delete",
        "Update",
        "Activate"
      ],
      "updatedAt": "1476990583",
      "defaultEntityType": "Contacts"
    },
    {
      "type": "Program",
      "currentStatus": "Draft",
      "id": "25",
      "createdAt": "1472737496",
      "createdBy": "13",
      "depth": "minimal",
      "folderId": "3669",
      "name": "Another Program Name",
      "permissions": [
        "Retrieve",
        "SetSecurity",
        "Delete",
        "Update",
        "Activate"
      ],
      "updatedAt": "1472737496",
      "defaultEntityId": "1",
      "defaultEntityType": "CustomObjectRecords"
    }
  ],
  "page": 1,
  "pageSize": 2,
  "total": 36
}
			

cURL Example

Here is the same example in cURL given an instance with the name APITest, username API.User, and POD of 3.


curl --user "APITest\API.User" --request GET https://secure.p03.eloqua.com/api/rest/2.0/assets/programs?count=2
			
Back to Top