Skip to content

Get action sets

Request

GET /v3/action-sets

Retrieve all action sets in the account

Security
API_Key
Query
accountIdinteger

Filter action sets by account ID

GET
/v3/action-sets
curl -i -X GET \
  'https://api.observepoint.com/v3/action-sets?accountId=0' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Action sets retrieved successfully

Bodyapplication/json
Array [
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 } ]