Middesk · Example Payload

Middesk Create Order Example

Business VerificationKYBKnow Your BusinessIdentity VerificationComplianceEIN ValidationTIN VerificationSanctions ScreeningBusiness MonitoringFintechRegTech

Middesk Create Order Example is an example object payload from Middesk, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

namesummaryrequestresponse

Example Payload

Raw ↑
{
  "name": "create-order",
  "summary": "Create a verification order for a business",
  "request": {
    "method": "POST",
    "url": "https://api.middesk.com/v1/businesses/{business_id}/orders",
    "headers": {
      "Authorization": "Bearer YOUR_API_KEY",
      "Content-Type": "application/json"
    },
    "body": {
      "product": "watchlist",
      "subproducts": [
        "ofac",
        "adverse_media"
      ]
    }
  },
  "response": {
    "status": 200,
    "body": {
      "id": "ord_xyz789",
      "object": "order",
      "product": "watchlist",
      "status": "pending",
      "business_id": "bus_abc123",
      "created_at": "2026-06-13T00:00:00Z"
    }
  }
}