Middesk · Example Payload

Middesk Create Business Example

Business VerificationKYBKnow Your BusinessIdentity VerificationComplianceEIN ValidationTIN VerificationSanctions ScreeningBusiness MonitoringFintechRegTech

Middesk Create Business 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-business",
  "summary": "Create a business for KYB verification",
  "request": {
    "method": "POST",
    "url": "https://api.middesk.com/v1/businesses",
    "headers": {
      "Authorization": "Bearer YOUR_API_KEY",
      "Content-Type": "application/json"
    },
    "body": {
      "name": "Acme Corporation",
      "tin": {
        "tin": "12-3456789"
      },
      "addresses": [
        {
          "address_line1": "123 Main Street",
          "city": "San Francisco",
          "state": "CA",
          "postal_code": "94105"
        }
      ],
      "people": [
        {
          "name": "John Smith",
          "titles": [
            {
              "title": "CEO"
            }
          ],
          "dob": "1980-01-15",
          "ssn": "123-45-6789"
        }
      ],
      "website": {
        "url": "https://acme.com"
      },
      "orders": [
        {
          "product": "identity"
        }
      ]
    }
  },
  "response": {
    "status": 200,
    "body": {
      "id": "bus_abc123",
      "object": "business",
      "name": "Acme Corporation",
      "status": "pending",
      "created_at": "2026-06-13T00:00:00Z",
      "updated_at": "2026-06-13T00:00:00Z",
      "tin": {
        "tin": "12-3456789",
        "status": "pending"
      },
      "review": {
        "status": "pending"
      },
      "orders": [
        {
          "id": "ord_xyz789",
          "product": "identity",
          "status": "pending"
        }
      ]
    }
  }
}