Skip to content

Get action set by ID

Request

GET /v3/action-sets/{actionSetId}

Retrieve a specific action set by its ID

Security
API_Key
Path
actionSetIdinteger, (int64)required

ID of the action set to retrieve

GET
/v3/action-sets/{actionSetId}
curl -i -X GET \
  'https://api.observepoint.com/v3/action-sets/{actionSetId}' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Action set retrieved successfully

Bodyapplication/json
idinteger, (int64)read-only
namestring, non-emptyrequired

Name of the action set

actionsArray of objects, non-emptyrequired

List of actions in the action set

updatedAtstring, (local-date-time)read-only

Timestamp when the action set was last updated

createdAtstring, (local-date-time)read-only

Timestamp when the action set was created

accountIdintegerread-only

ID of the account the action set belongs to

userIdintegerread-only

ID of the user the action set belongs to

Response
{ "id": 0, "name": "string", "actions": [ {} ], "updatedAt": "string", "createdAt": "string", "accountId": 0, "userId": 0 }