Retrieve Event Types

get

/ic/api/integration/v1/eventTypes

Retrieves information about all the event types ordered by the last updated time. Retrieves the latest revision of each event type.

Request

Query Parameters
  • This is the name of the service instance. You can get this value from the About page where it is specified in the Service instance field.
  • Orders results by event type name or created time.

    Valid values:

    • name: Order event types by name in the ascending order. Example: orderBy=name.
    • time: Order event types by the created time in the descending order. Example: orderBy=time.
  • Filters event types by name and code.

    Valid parameters:

    • name: Name of the event type. Supports full match and exact matches. For example:
      • To retrieve event type that is an exact match in the name, specify:
        q={name:'My Event Type'}
    • code: Code of the event type. Supports full match and exact matches. For example:
      • To retrieve event type that is an exact match in the code, specify:
        q={name:'My_Event_Type'}
Header Parameters
  • Use for paginating through the returned results. This is not a mandatory parameter. This parameter can be skipped in the first request. For the subsequent requests, obtain the value for the parameter from the response header named 'nextpagetoken' in the previous request.

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : EventTypesRs
Type: object
Show Source
Nested Schema : items
Type: array
List of event types
Show Source
Nested Schema : EventTypeBaseRs
Type: object
Show Source

400 Response

Malformed parameters

500 Response

Server error
Back to Top