Customers

Create, update and fetch contracts information.

Received's Customers' APIs allow our users to manage their customers and subscribers. The APIs support operations such as creating a new customer, updating existing customers and fetching customers' related data.

Endpoint on this page
POST https://api.received.ai/api/customers
GET https://api.received.ai/api/entities/<entity_ref>
GET https://api.received.ai/api/customers/names
GET https://api.received.ai/api/entities/names

Don't forget! APIs must include:

  1. Bearer Token - return from the login call

  2. API version - {"Version": "V0"}

Adding Customer For Debit Entity

Adding a new customer for the receiving entity involves registering their details and payment information, enhancing the entity's client base and opening avenues for increased revenue streams.

Add Customer

POST https://api.received.ai/api/customers
Mandatory request
{
  "name": "Acme",
  "email": "[email protected], [email protected]",
}

Responses

Request Schema

Term
Type
Description
Example

name*

String

Company name

Acme

email*

String

Company's email addresses comma separated

legal_name

String

Company's legal name - documents use

Acme Inc.

ein

Number

Employer identification number

12-3456789

phone

Number

Company's phone number in international format (7-20 digits)

2121234567

country_code

Number

Country code (1-4 digits)

123

country*

String

Company's country of operation

United States

country_state

String

Company's state of operation

NY

city

String

Company's city of operation

New York

zip-code

Number

Company's zip code

10001

billing_address

String

Company's billing address

643 Mundy St, Watertown, New York(NY), 13601

shipping_address

String

Company's shipping address

643 Mundy St, Watertown, New York(NY), 13601

currency

String

The default currency that is used for this company

USD

tax

Number

Value Added Tax - in percentage

17

entity_ref

String

The ID of the related supplier entity

fae8fc36-d321-473f-9890-a9cb16deb4dd

net_terms*

Number

The default net terms used for this company, It must be a positive number or a payment term: "DUE_UPON_RECEIPT", "DUE_UPON_USAGE"

30

billing_bank_transfer_details billing_account_id

Object String

Bank account details The ID of the bank account

billing_online_payment_details auto_charge payment_gateway_id payment_gateway_card_id

Object Boolean String String

Online payment details Indicates whether the charging should be automatic or not The ID of the payment gateway The ID of a specific card defined in the payment gateway account, such as Stripe card id

billing_crypto_details address tokens

Object String Array

The details of the crypto wallet The address of the crypto wallet The crypto tokens that supported by the wallet

settings attach_useage_logs_csv attach_useage_logs_pdf

String Boolean Boolean

Set usage reports for Invoice email:

Attach logs csv to invoice email Attach logs appendix to invoice PDF

Response Schema

Term
Type
Description
Exmaple

customer_ref

String

Customer reference

dcaff9c0-4a9c-4d01-b2dc-0da7efcc616c

Get Debit Entity

Responses

Explore More APIs

Delves into additional customers methods, broadening your integration capabilities and enhancing secure access

List All Customers

Filter List Of Customers

Customer Invoices

See invoices API

List All Debit Entities

Response

Response Schema

Term
Type
Description
Exmaple

entity_ref

String

The ID of the supplier entity

dcaff9c0-4a9c-4d01-b2dc-0da7efcc616c

entity_name

String

The name of the supplier entity

Acme

entity_legal_name

String

The legal name of the supplier entity - used of documents

Acme Ltd.

Last updated

Was this helpful?