v4

latestOpenAPI 3.0.12026-07-3189233676.2 KB
Orders

Retrieve self-certification results for an order

The endpoint returns self-certification results for employments and accounts that have been reviewed and certified by the user.

get/v1/orders/{id}/certifications/

Response

Self-certification results

Example response

{
  "results": [
    {
      "decision": "representative",
      "employment": {
        "id": "24d7e80942ce4ad58a93f70ce4115f5c",
        "start_date": "2018-01-01",
        "pay_rate": "25.50",
        "pay_date": "2023-12-15",
        "company": {
          "name": "Facebook"
        }
      }
    },
    {
      "decision": "not_representative",
      "rejection_reason": "incorrect_amount",
      "rejection_comment": "Balance is outdated",
      "account": {
        "id": "bc917458a3da4b2c8cc8282aa1707aaa",
        "type": "CHECKING",
        "mask": "1234",
        "routing_number": "021000021",
        "balance": "1500.25",
        "owners": [
          {
            "full_name": "John Doe"
          }
        ]
      }
    }
  ]
}