Skip to main content
GET
/
v0
/
originators
List all Originators
curl --request GET \
  --url https://api.sandbox.lead.bank/v0/originators \
  --header 'Authorization: Bearer <token>'
{
  "objects": [
    {
      "id": "originator_xyz123",
      "account_id": "account_xyz123",
      "entity_id": "entity_xyz123",
      "status": "active",
      "company_name": "Acme Inc.",
      "company_id": 1234567890,
      "ach": {
        "allowed_sec_codes": [
          "WEB"
        ],
        "limits": {
          "calendar_day_maximum_amount": {
            "credit": 495000000000,
            "debit": 495000000000
          },
          "rolling_30_calendar_day_maximum_amount": {
            "credit": 495000000000,
            "debit": 495000000000
          }
        },
        "nested_third_parties": [
          "entity_xyz123"
        ]
      },
      "metadata": {},
      "created_at": "2022-06-27T11:22:33Z",
      "updated_at": "2022-06-27T11:22:33Z"
    }
  ],
  "has_more": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

account_id
string
required

The account ID to retrieve the originators for.

Pattern: ^account_\w+$
limit
integer
default:10

Maximum number of objects to be returned.

Required range: 1 <= x <= 100
starting_after
string

The ID of the originator to start the list after.

Pattern: ^originator_\w+$
ending_before
string

The ID of the originator to end the list before.

Pattern: ^originator_\w+$
status
string

The status of the originator.

Response

List of Originators

objects
object[]
required
has_more
boolean
required

Indicates if there are more originators to retrieve.