v1

latestOpenAPI 3.0.02026-08-06102185472.3 KB
Orchestration payments

Acknowledge orchestration notifications

Acknowledges multiple orchestration payment notifications using a list of UUIDs.

put/v4/orchestration/payment/notification/ack

Request body

uuidsstring[]

List of orchestration payment notification UUIDs.

Example request

{
  "uuids": [
    "328b3e50-7983-46d5-94a0-ef004d78db1d"
  ]
}

Response

Successfully acknowledged orchestration payment notifications.

invalid_uuid_liststring[]

Example response

{
  "notification_ack_list": [
    {
      "uuid": "5492648d-2132-4e70-9ded-2fc86f22b321",
      "notification_type": "PAYMENT_SUCCESS",
      "created_at": "2018-04-06T20:33:35Z",
      "modified_at": "2018-04-06T20:33:35Z"
    }
  ],
  "invalid_uuid_list": [
    "328b3e50-7983-46d5-94a0-ef004d78db1d"
  ]
}