Retrieve security groups

get

/api/rest/2.0/system/security/groups

Retrieves a list of security groups in Eloqua.

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 security group 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 : QueryResultSecurityGroup
Type: object
Title: QueryResultSecurityGroup
Show Source
Nested Schema : elements
Type: array
Array of security group fields.
Show Source
Nested Schema : SecurityGroup
Type: object
Title: SecurityGroup
Show Source
  • Acronym for the security group
  • Read Only: true
    The date and time the security group was created, expressed in Unix time.
  • Read Only: true
    The login id of the user who created the security group.
  • Read Only: true
    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.
  • The description of the security group.
  • Read Only: true
    Id of the security group.
  • Read Only: true
    Indicates if the security group is effective.
  • Read Only: true
    Indicates if the security group is read only.
  • The name of the security group.
  • The asset's type in Eloqua. This is a read-only property.
  • Read Only: true
    Unix timestamp for the date and time the security group was last updated. This is a read-only property.
  • Read Only: true
    The login id of the user that last updated the security group. This is a read-only property.

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 a list of all security groups in your Eloqua instance:


GET /api/REST/2.0/system/security/groups
			

Response:


{
  "elements": [
    {
      "type": "SecurityGroup",
      "id": "1",
      "createdAt": "1174881600",
      "depth": "minimal",
      "description": "",
      "name": "Everyone",
      "updatedAt": "1174881600"
    },
    {
      "type": "SecurityGroup",
      "id": "8",
      "createdAt": "1208715083",
      "depth": "minimal",
      "description": "",
      "name": "API Users",
      "updatedAt": "1208715083"
    },
	...
  ],
  "page": 1,
  "pageSize": 1000,
  "total": 20
}
			

Retrieve the first security group in your instance at complete depth:


GET /api/REST/2.0/system/security/groups?depth=complete&count=1
			

Response:


{
  "elements": [
    {
      "type": "SecurityGroup",
      "id": "1",
      "createdAt": "1174881600",
      "depth": "complete",
      "name": "Everyone",
      "updatedAt": "1174881600",
      "acronym": "EVRY",
      "isEffective": "true",
      "isReadOnly": "true"
    }
  ],
  "page": 1,
  "pageSize": 1,
  "total": 20
}
			
Back to Top