Skip to main content
GET
https://api.easycred.in
/
api
/
v1
/
partner
/
webhooks
List Webhook Subscriptions
curl --request GET \
  --url https://api.easycred.in/api/v1/partner/webhooks \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Nonce: <x-nonce>' \
  --header 'X-Signature: <x-signature>' \
  --header 'X-Timestamp: <x-timestamp>'
{
  "success": true,
  "data": {
    "subscriptions": [
      {
        "subscriptionId": "<string>",
        "url": "<string>",
        "subscribedEvents": [],
        "isActive": true,
        "failureCount": 123,
        "lastDeliveryAt": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key of the form ec_(live|test). Scopes are listed per operation.

Headers

X-Signature
string
required

HMAC-SHA256 signature over method, path, timestamp, nonce and raw body.

X-Timestamp
string
required

Unix epoch seconds. Requests outside the tolerance window are rejected.

X-Nonce
string
required

Unique per-request nonce. Replays are rejected.

Response

Success

success
boolean
required
data
object
required