Actions

Given a resource, looks at its status. SUCCESS will mean action has been successfully terminated.

get
Authorizations
Query parameters
resourceNamestringOptional
resourceIdinteger · int64Optional
serviceIdinteger · int64Optional
statusesstring[]Optional
requestIdinteger · int64Optional
Responses
200
OK
*/*
get
GET /itcare/actions HTTP/1.1
Host: api.cegedim.cloud
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
  {
    "completedAt": "2025-07-06T11:01:21.263Z",
    "family": "text",
    "id": 1,
    "lastUpdatedAt": "2025-07-06T11:01:21.263Z",
    "message": "text",
    "process": "text",
    "resourceName": "text",
    "resourceType": "text",
    "status": "SUCCESS,IN_PROGRESS,ERROR",
    "submittedAt": "2025-07-06T11:01:21.263Z",
    "submittedBy": "text"
  }
]

Use this method to look for status of an asynchronously launched action (with 202 status code). SUCCESS will mean action has been successfully terminated.

get
Authorizations
Path parameters
actionIdinteger · int64Required
Responses
200
OK
*/*
get
GET /itcare/actions/{actionId} HTTP/1.1
Host: api.cegedim.cloud
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "completedAt": "2025-07-06T11:01:21.263Z",
  "family": "text",
  "id": 1,
  "lastUpdatedAt": "2025-07-06T11:01:21.263Z",
  "message": "text",
  "process": "text",
  "resourceName": "text",
  "resourceType": "text",
  "status": "SUCCESS,IN_PROGRESS,ERROR",
  "submittedAt": "2025-07-06T11:01:21.263Z",
  "submittedBy": "text"
}

Last updated