GET
/
payout
/
v1
/
incidents
curl --request GET \
  --url https://payout-api.cashfree.com/payout/v1/incidents \
  --header 'Authorization: <authorization>'
{
  "status": "SUCCESS",
  "subCode": "200",
  "message": "List of incidents retrieved",
  "data": {
    "incidents": [
      {
        "id": 214711,
        "type": "BENEFICIARY",
        "entity": "BANK",
        "mode": "IMPS",
        "createdAt": "2022-01-05T00:48:54.000Z",
        "resolvedAt": "2022-01-05T00:53:24.000Z",
        "isScheduled": false,
        "isResolved": true,
        "impact": "LOW",
        "entityName": "City union bank",
        "entityCode": "CIUB"
      }
    ]
  }
}

Headers

Authorization
string
required

Bearer auth token

Query Parameters

status
string

Incident status - RESOLVED/UNRESOLVED/ALL are the allowed values Default value is UNRESOLVED if not provided

startTime string
string

Start Time for the desired period. Format yyyy-mm-dd hh:mm:ss

endTime string
string

End Time for the desired period. Format yyyy-mm-dd hh:mm:ss. Default values are current day start Time(00:00:00) and end Time(23:59:59) if not provided.

entityCode string
string

Code for the entity(BANK) on which the incidents are created.

Response

200
application/json
200
status
string
Example:

"SUCCESS"

subCode
string
Example:

"200"

message
string
Example:

"List of incidents retrieved"

data
object

Was this page helpful?