LoopFour

API Reference

Complete REST API documentation

API Reference

The Workflows API is a RESTful API that uses JSON for request and response bodies.

Base URL

https://api.justpaid.io/api/v1

Authentication

All requests require an API key in the x-api-key header:

curl -H "x-api-key: wfk_your_api_key" https://api.justpaid.io/api/v1/workflows

Endpoints

Response Format

All responses follow this format:

{
  "success": true,
  "data": { }
}

Error responses:

{
  "success": false,
  "error": {
    "code": "VALIDATION_ERROR",
    "message": "Invalid workflow configuration"
  }
}

HTTP Status Codes

CodeDescription
200Success
201Created
400Bad Request
401Unauthorized
403Forbidden
404Not Found
429Rate Limited
500Server Error

On this page