Skip to content

Easyflow (1.0)

Easyflow API Document

This is the API documentation and must be used by everyone who wants to integrate with the Easyflow platform.

Download OpenAPI description
Overview
License
Languages
Servers
Mock server
https://docs.easyflow.digital/_mock/openapi/
Production environment URL
https://9iq81tsdy4.execute-api.sa-east-1.amazonaws.com/

Businesses

Operations

Refunds

Operations

Sales

Operations

Subscriptions

Operations

Financials

Operations

Products

Operations

Orders

Operations

Customers

Operations

Webhooks

Operations

Get webhook queue details

Request

Retrieves the details of the dedicated dynamic queue associated with a specific webhook ID. This queue is used to temporarily store failed event notifications for subsequent retry attempts, ensuring delivery resilience.

Path
webhookIdstringrequired

The unique identifier of the webhook whose queue details are to be retrieved.

Example: 692f3483106ee1344d9aa243
Headers
x-api-keystringrequired

Api key provided on integrations tab in Easyflow platform.

x-api-secretstringrequired

Api Secret provided on integrations tab in Easyflow platform.

curl -i -X GET \
  https://docs.easyflow.digital/_mock/openapi/webhooks/dynamic-queues/692f3483106ee1344d9aa243 \
  -H 'x-api-key: string' \
  -H 'x-api-secret: string'

Responses

Successfully returned the webhook queue details.

Bodyapplication/json
statusCodeinteger
Example: 200
dataobject
Response
application/json
{ "statusCode": 200, "data": { "id": "692f3483106ee1344d9aa23f", "name": "easy_internal_wb_af965c2a-5075-4d72-993d-aeac1a7b4aa6_queue", "status": "active", "createdAt": "2025-12-02T18:48:35.097Z", "updatedAt": "2025-12-02T18:48:35.097Z", "messagesAvailable": 0 } }

Delete a webhook

Request

Permanently deletes a webhook identified by its unique ID, stopping all future event notification deliveries and removing its configuration.

Path
webhookIdstringrequired

The unique identifier of the webhook to be deleted.

Example: 692f3483106ee1344d9aa243
Headers
x-api-keystringrequired

Api key provided on integrations tab in Easyflow platform.

x-api-secretstringrequired

Api Secret provided on integrations tab in Easyflow platform.

curl -i -X DELETE \
  https://docs.easyflow.digital/_mock/openapi/webhooks/delete/692f3483106ee1344d9aa243 \
  -H 'x-api-key: string' \
  -H 'x-api-secret: string'

Responses

Webhook successfully deleted.

Bodyapplication/json
statusCodeinteger
Example: 200
dataobject
Response
application/json
{ "statusCode": 200, "data": { "deleted": true } }

Deactivate a webhook

Request

Sets the status of a specific webhook to 'inactive', immediately stopping the delivery of event notifications to its configured dispatchers.

Path
webhookIdstringrequired

The unique identifier of the webhook to be deactivated.

Example: 692f3483106ee1344d9aa243
Headers
x-api-keystringrequired

Api key provided on integrations tab in Easyflow platform.

x-api-secretstringrequired

Api Secret provided on integrations tab in Easyflow platform.

curl -i -X PATCH \
  https://docs.easyflow.digital/_mock/openapi/webhooks/deactivate/692f3483106ee1344d9aa243 \
  -H 'x-api-key: string' \
  -H 'x-api-secret: string'

Responses

Webhook successfully deactivated.

Bodyapplication/json
statusCodeinteger
Example: 200
dataobject
Response
application/json
{ "statusCode": 200, "data": { "deactivated": true } }

Pixel

Operations

Events

Webhooks