v1

latestOpenAPI 3.0.12026-07-26106359429.8 KB
Originator

List all Originators

List all Originators.

get/v0/originators

Query parameters

account_idstring required

The account ID to retrieve the originators for.

limitinteger

Maximum number of objects to be returned.

starting_afterstring

The ID of the originator to start the list after.

ending_beforestring

The ID of the originator to end the list before.

statusstring

The status of the originator.

Response

List of Originators

has_moreboolean required

Indicates if there are more originators to retrieve.

Example response

{
  "objects": [
    {
      "id": "originator_xyz123",
      "account_id": "account_xyz123",
      "entity_id": "entity_xyz123",
      "status": "active",
      "company_name": "Acme Inc.",
      "ach": {
        "allowed_sec_codes": [
          "WEB"
        ],
        "nested_third_parties": [
          "entity_xyz123"
        ]
      },
      "created_at": "2022-06-27T11:22:33Z",
      "updated_at": "2022-06-27T11:22:33Z"
    }
  ]
}