The Finix API is resource oriented, relying heavily on common REST principals. Our API uses JSON encoded requests and responses.
You'll get separate accounts for sandbox and production as well as corresponding API credentials to access the Finix API.
With CURL, just include your credentials as basic auth (-u) in the header of each request as follows:
curl https://finix.sandbox-payments-api.com/ \
-H "Content-Type: application/vnd.json+api" \
-u USsRhsHYZGBPnQw8CByJyEQW:8a14c2f9-d94b-4c72-8f5c-a62908e5b30e
To communicate with the Finix API, you need to authenticate your requests via HTTP basic access authentication with a username
and password
, which you can find in your Finix Dashboard. If you don't have a Dashboard, you can test our APIs with the following credentials:
USsRhsHYZGBPnQw8CByJyEQW
8a14c2f9-d94b-4c72-8f5c-a62908e5b30e
APgPDQrLD52TYvqazjHJJchM
An Application
is a resource that represents your web app, like a web service that connects buyers (i.e. customers) and sellers (i.e. merchants).
Sandbox URL |
---|
https://finix.sandbox-payments-api.com |
Finix provides two environments with distinct base URLs to make API requests.
Both environments are entirely separate and do not share information like API credentials.
With these environments, you can test your connection with Finix's APIs. For testing purposes, use the Finix Sandbox API. Reach out to your Finix point of contact for the live envrioment URL.
HTTP Code |
Meaning |
---|---|
400 |
Bad Request -- You provided a request that can't be successfully parsed. Verify you are providing valid JSON |
401 |
Unauthorized -- We could not authenticate your request. You used an incorrect API Key |
402 |
Upstream Processor Error -- Errors caused by 3rd party service |
403 |
Forbidden -- Your credentials don't have the right permissions to submit the request |
404 |
Not Found -- The specified resource could not be found |
405 |
Method not allowed -- The HTTP request method used to submit the request is not supported by the specified resource |
406 |
Not Acceptable -- The server can't accept the submitted request. Double-check how the request was formatted and submitted |
409 |
Conflict -- The submitted request conflicts with the current state of the server |
422 |
Unprocessable Entity -- The parameters were valid but the request failed. The error is usually some misunderstanding of various steps that have to be executed in order (e.g. attempting to initiate a transfer on behalf of a merchant that has not yet been approved) |
500 |
Internal Server Error -- We had a problem with our server. Try again later. |
We use HTTP errors to communicate overall success and include error messages on non 200 responses. You can also test for specific error responses.
You'll notice the Authorization
and Transfer
objects have a field named idempotency_id
which ensures the API request is only performed once. Why is this important? We've all experienced a hanging request while on a checkout page and feared that if we refresh or submit the payment again we'll be charged twice.
With Finix, we remove this ambiguity by having the user generate a unique idempotency_id
and sending it with the normal payload. If the user attempts a request with the same idempotency_id
, the response will raise an exception. Now you can rest assured that when you create an Authorization
or debit a bank account that the user will be protected from potential network issues by simply passing an idempotency_id
in the body of the request.
{
...
"tags":{
"card-type":"business card",
"customer_order_reference":"order1234"
}
}
All Finix resources (i.e. Authorization
, Application
, Identity
, Merchant
, Payment Instrument
, Settlement
, Transfer
, etc.) include a tags
attribute that allows you to include key-value metadata with resources. A resource's tags
object, can have an unlimited number of tags. The information in the tags can also be updated as many times as needed.
For example, when creating a Payment Instrument
, you can include additional data about the card by passing a custom key and value such, as card-type
: business card.
As Finix improves our products and features, we will make changes to our APIs. When breaking changes are made to Finix's API, a new dated version is released.
The API version your requests use controls how API responses and webhooks behave (for example, the values you see in responses, the parameters you're sending in requests, etc.). For more information, see Versioning.
An Identity
resource represents either a person or business in Finix. You'll create an Identity
to onboard your merchants, and verify the different owners.
Identities
can also represent buyers and are used to store their Payment Instruments
.
Push to Card transactions also requires creating Identities
for your users.
Related Guides: Getting Started, Onboarding, Push to Card
Create an Identity
for your merchant or buyer.
Creating Identities
for merchants requires they provide KYC details.
Related Guides: Getting Started, Onboarding
object or null Additional underwriting data that's required to verify the identity of the merchant. | |
object Key value pair for annotating custom meta data (e.g. order numbers). | |
required | object The underwriting details required to verify the |
Single Identity object
Error
Authentication information is missing or invalid
Forbidden
Not Acceptable
{- "tags": {
- "key": "value"
}, - "entity": {
- "phone": "7145677613",
- "first_name": "Collen",
- "last_name": "Wade",
- "email": "therock@gmail.com",
- "personal_address": {
- "city": "San Mateo",
- "country": "USA",
- "region": "CA",
- "line2": "Apartment 7",
- "line1": "741 Douglass St",
- "postal_code": "94114"
}
}
}
{- "id": "IDgWxBhfGYLLdkhxx2ddYf9K",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": null,
- "first_name": "Collen",
- "last_name": "Wade",
- "email": "therock@gmail.com",
- "business_name": null,
- "business_type": null,
- "doing_business_as": null,
- "phone": "7145677613",
- "business_phone": null,
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": null,
- "mcc": null,
- "dob": null,
- "max_transaction_amount": 0,
- "amex_mid": null,
- "discover_mid": null,
- "url": null,
- "annual_card_volume": 0,
- "has_accepted_credit_cards_previously": false,
- "incorporation_date": null,
- "principal_percentage_ownership": null,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": false,
- "business_tax_id_provided": false,
- "default_statement_descriptor": null
}, - "tags": {
- "key": "value"
}, - "created_at": "2022-01-27T07:36:59.91Z",
- "updated_at": "2022-01-27T07:36:59.91Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}
Retrieves a list of Identities
.
List of Identity objects
object | |
object List of | |
object For your convenience, every response includes several URLs which link to resources relevant to the request. You can use these |
Authentication information is missing or invalid
Forbidden
Object does not exist
Not Acceptable
curl -i -X GET \ -u <username>:<password> \ 'https://finix.sandbox-payments-api.com/identities?sort=string&after_cursor=string&limit=0&id=string&created_at.gte=created_at.gte%3D2019-06-15&created_at.lte=created_at.lte%3D2019-06-15&default_statement_descriptor=string&business_name=string&business_type=string&email=user%40example.org&first_name=first_name%3DDaphne&last_name=kline&title=ceo&before_cursor=string'
{- "_embedded": {
- "identities": [
- {
- "id": "IDuqZpDw28f2KK6YuDk4jNLg",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Dunder Mifflin",
- "business_type": "CORPORATION",
- "doing_business_as": "Dunder Mifflin",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.DunderMifflin.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Dunder Mifflin"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:37:02.85Z",
- "updated_at": "2022-01-27T07:37:02.76Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDqXfTAYjLL4Lyce4Xq33g9k",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "Founder",
- "first_name": "John",
- "last_name": "Smith",
- "email": "john.smith@company1.com",
- "business_name": null,
- "business_type": null,
- "doing_business_as": null,
- "phone": "1234567890",
- "business_phone": null,
- "personal_address": {
- "line1": "123 Main Street",
- "line2": null,
- "city": "San Francisco",
- "region": "CA",
- "postal_code": "90650",
- "country": "USA"
}, - "business_address": null,
- "mcc": null,
- "dob": {
- "day": 1,
- "month": 1,
- "year": 2013
}, - "max_transaction_amount": 0,
- "amex_mid": null,
- "discover_mid": null,
- "url": null,
- "annual_card_volume": 0,
- "has_accepted_credit_cards_previously": false,
- "incorporation_date": null,
- "principal_percentage_ownership": 25,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": false,
- "default_statement_descriptor": null
}, - "tags": { },
- "created_at": "2022-01-27T07:37:01.87Z",
- "updated_at": "2022-01-27T07:37:01.93Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDgWxBhfGYLLdkhxx2ddYf9K",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": null,
- "first_name": "Collen",
- "last_name": "Wade",
- "email": "therock@gmail.com",
- "business_name": null,
- "business_type": null,
- "doing_business_as": null,
- "phone": "7145677613",
- "business_phone": null,
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": null,
- "mcc": null,
- "dob": null,
- "max_transaction_amount": 0,
- "amex_mid": null,
- "discover_mid": null,
- "url": null,
- "annual_card_volume": 0,
- "has_accepted_credit_cards_previously": false,
- "incorporation_date": null,
- "principal_percentage_ownership": null,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": false,
- "business_tax_id_provided": false,
- "default_statement_descriptor": null
}, - "tags": {
- "key": "value"
}, - "created_at": "2022-01-27T07:36:59.91Z",
- "updated_at": "2022-01-27T07:36:59.83Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDtuGQoXUHTCjNMgm2Eg7vEW",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Bobs Burgers",
- "business_type": "GOVERNMENT_AGENCY",
- "doing_business_as": "Bobs Burgers",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.BobsBurgers.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PUBLIC",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Bobs Burgers"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:36:56.53Z",
- "updated_at": "2022-01-27T07:36:56.44Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDxAP2TJ1Gxq5rLtcQE58i1b",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Petes Coffee",
- "business_type": "INTERNATIONAL_ORGANIZATION",
- "doing_business_as": "Petes Coffee",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.PetesCoffee.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Petes Coffee"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:36:55.94Z",
- "updated_at": "2022-01-27T07:36:55.84Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDbXQoC8j4DoShzhQzap8R9W",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Bobs Burgers",
- "business_type": "TAX_EXEMPT_ORGANIZATION",
- "doing_business_as": "Bobs Burgers",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.BobsBurgers.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PUBLIC",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Bobs Burgers"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:36:55.28Z",
- "updated_at": "2022-01-27T07:36:55.18Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDqwZqmgukJsFGLAfLkBVcAM",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Dunder Mifflin",
- "business_type": "ASSOCIATION_ESTATE_TRUST",
- "doing_business_as": "Dunder Mifflin",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.DunderMifflin.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Dunder Mifflin"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:36:54.61Z",
- "updated_at": "2022-01-27T07:36:54.48Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "ID2RahCnmeXoGpWdZeNuoBw1",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Pollos Hermanos",
- "business_type": "PARTNERSHIP",
- "doing_business_as": "Pollos Hermanos",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.PollosHermanos.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Pollos Hermanos"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:36:53.82Z",
- "updated_at": "2022-01-27T07:36:53.62Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDp15SMzFRtu39HeXmictVFe",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Pollos Hermanos",
- "business_type": "LIMITED_LIABILITY_COMPANY",
- "doing_business_as": "Pollos Hermanos",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.PollosHermanos.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Pollos Hermanos"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:36:52.89Z",
- "updated_at": "2022-01-27T07:36:52.79Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDpYDM7J9n57q849o9E9yNrG",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Petes Coffee",
- "business_type": "INDIVIDUAL_SOLE_PROPRIETORSHIP",
- "doing_business_as": "Petes Coffee",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.PetesCoffee.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Petes Coffee"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:36:52.11Z",
- "updated_at": "2022-01-27T07:36:52.00Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDuquemzE7UkUJioGJfVKBKt",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": null,
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "BrainTree",
- "business_type": "LIMITED_LIABILITY_COMPANY",
- "doing_business_as": "BrainTree",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": null,
- "dob": {
- "day": 27,
- "month": 5,
- "year": 1978
}, - "max_transaction_amount": 1200000,
- "amex_mid": null,
- "discover_mid": null,
- "url": null,
- "annual_card_volume": 0,
- "has_accepted_credit_cards_previously": false,
- "incorporation_date": null,
- "principal_percentage_ownership": null,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": null
}, - "tags": {
- "application_name": "BrainTree"
}, - "created_at": "2022-01-27T07:36:33.52Z",
- "updated_at": "2022-01-27T07:36:33.61Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}
]
}, - "_links": {
}, - "page": {
- "next_cursor": "IDuquemzE7UkUJioGJfVKBKt",
- "limit": 20
}
}
Retrieve the details of a previously created Identity
.
Single Identity object
Authentication information is missing or invalid
Forbidden
Object does not exist
Not Acceptable
curl -i -X GET \ -u <username>:<password> \ 'https://finix.sandbox-payments-api.com/identities/{identity_id}'
{- "id": "IDgWxBhfGYLLdkhxx2ddYf9K",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": null,
- "first_name": "Collen",
- "last_name": "Wade",
- "email": "therock@gmail.com",
- "business_name": null,
- "business_type": null,
- "doing_business_as": null,
- "phone": "7145677613",
- "business_phone": null,
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": null,
- "mcc": null,
- "dob": null,
- "max_transaction_amount": 0,
- "amex_mid": null,
- "discover_mid": null,
- "url": null,
- "annual_card_volume": 0,
- "has_accepted_credit_cards_previously": false,
- "incorporation_date": null,
- "principal_percentage_ownership": null,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": false,
- "business_tax_id_provided": false,
- "default_statement_descriptor": null
}, - "tags": {
- "key": "value"
}, - "created_at": "2022-01-27T07:36:59.91Z",
- "updated_at": "2022-01-27T07:36:59.91Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}
Update an existing Identity
.
If you are updating the Identity
of a Merchant
that’s already been onboarded, you need to verify the merchant again.
object Additional underwriting data that's required to verify the identity of the merchant. | |
object Key value pair for annotating custom meta data (e.g. order numbers). | |
object Underwriting data that's required to verify the identity of the merchant. |
Single Identity object
Error
Authentication information is missing or invalid
Forbidden
Object does not exist
Not Acceptable
{- "entity": {
- "last_name": "Wade",
- "first_name": "Collen",
- "email": "therock@gmail.com",
- "phone": "7145677613"
}
}
{- "id": "IDgWxBhfGYLLdkhxx2ddYf9K",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": null,
- "first_name": "Collen",
- "last_name": "Wade",
- "email": "therock@gmail.com",
- "business_name": null,
- "business_type": null,
- "doing_business_as": null,
- "phone": "7145677613",
- "business_phone": null,
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": null,
- "mcc": null,
- "dob": null,
- "max_transaction_amount": 0,
- "amex_mid": null,
- "discover_mid": null,
- "url": null,
- "annual_card_volume": 0,
- "has_accepted_credit_cards_previously": false,
- "incorporation_date": null,
- "principal_percentage_ownership": null,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": false,
- "business_tax_id_provided": false,
- "default_statement_descriptor": null
}, - "tags": {
- "key": "value"
}, - "created_at": "2022-01-27T07:36:59.91Z",
- "updated_at": "2022-01-27T07:36:59.91Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}
Create an associated Identity
for every owner with 25% or more ownership over the merchant.
object or null Additional underwriting data that's required to verify the identity of the merchant. | |
object Key value pair for annotating custom meta data (e.g. order numbers). | |
required | object The underwriting details required to verify the |
Single Identity object
Error
Authentication information is missing or invalid
Forbidden
Object does not exist
Not Acceptable
{- "tags": {
- "key": "value"
}, - "entity": {
- "phone": "7145677613",
- "first_name": "Collen",
- "last_name": "Wade",
- "email": "therock@gmail.com",
- "personal_address": {
- "city": "San Mateo",
- "country": "USA",
- "region": "CA",
- "line2": "Apartment 7",
- "line1": "741 Douglass St",
- "postal_code": "94114"
}
}
}
{- "id": "IDgWxBhfGYLLdkhxx2ddYf9K",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": null,
- "first_name": "Collen",
- "last_name": "Wade",
- "email": "therock@gmail.com",
- "business_name": null,
- "business_type": null,
- "doing_business_as": null,
- "phone": "7145677613",
- "business_phone": null,
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": null,
- "mcc": null,
- "dob": null,
- "max_transaction_amount": 0,
- "amex_mid": null,
- "discover_mid": null,
- "url": null,
- "annual_card_volume": 0,
- "has_accepted_credit_cards_previously": false,
- "incorporation_date": null,
- "principal_percentage_ownership": null,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": false,
- "business_tax_id_provided": false,
- "default_statement_descriptor": null
}, - "tags": {
- "key": "value"
}, - "created_at": "2022-01-27T07:36:59.91Z",
- "updated_at": "2022-01-27T07:36:59.91Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}
Retrieve a list of Associated Identities
for an Identity
.
List of Identity objects
object | |
object List of | |
object For your convenience, every response includes several URLs which link to resources relevant to the request. You can use these |
Authentication information is missing or invalid
Forbidden
Object does not exist
Not Acceptable
curl -i -X GET \ -u <username>:<password> \ 'https://finix.sandbox-payments-api.com/identities/{identity_id}/associated_identities?limit=0&after_cursor=string&before_cursor=string'
{- "_embedded": {
- "identities": [
- {
- "id": "IDuqZpDw28f2KK6YuDk4jNLg",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Dunder Mifflin",
- "business_type": "CORPORATION",
- "doing_business_as": "Dunder Mifflin",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.DunderMifflin.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Dunder Mifflin"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:37:02.85Z",
- "updated_at": "2022-01-27T07:37:02.76Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDqXfTAYjLL4Lyce4Xq33g9k",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "Founder",
- "first_name": "John",
- "last_name": "Smith",
- "email": "john.smith@company1.com",
- "business_name": null,
- "business_type": null,
- "doing_business_as": null,
- "phone": "1234567890",
- "business_phone": null,
- "personal_address": {
- "line1": "123 Main Street",
- "line2": null,
- "city": "San Francisco",
- "region": "CA",
- "postal_code": "90650",
- "country": "USA"
}, - "business_address": null,
- "mcc": null,
- "dob": {
- "day": 1,
- "month": 1,
- "year": 2013
}, - "max_transaction_amount": 0,
- "amex_mid": null,
- "discover_mid": null,
- "url": null,
- "annual_card_volume": 0,
- "has_accepted_credit_cards_previously": false,
- "incorporation_date": null,
- "principal_percentage_ownership": 25,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": false,
- "default_statement_descriptor": null
}, - "tags": { },
- "created_at": "2022-01-27T07:37:01.87Z",
- "updated_at": "2022-01-27T07:37:01.93Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDgWxBhfGYLLdkhxx2ddYf9K",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": null,
- "first_name": "Collen",
- "last_name": "Wade",
- "email": "therock@gmail.com",
- "business_name": null,
- "business_type": null,
- "doing_business_as": null,
- "phone": "7145677613",
- "business_phone": null,
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": null,
- "mcc": null,
- "dob": null,
- "max_transaction_amount": 0,
- "amex_mid": null,
- "discover_mid": null,
- "url": null,
- "annual_card_volume": 0,
- "has_accepted_credit_cards_previously": false,
- "incorporation_date": null,
- "principal_percentage_ownership": null,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": false,
- "business_tax_id_provided": false,
- "default_statement_descriptor": null
}, - "tags": {
- "key": "value"
}, - "created_at": "2022-01-27T07:36:59.91Z",
- "updated_at": "2022-01-27T07:36:59.83Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDtuGQoXUHTCjNMgm2Eg7vEW",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Bobs Burgers",
- "business_type": "GOVERNMENT_AGENCY",
- "doing_business_as": "Bobs Burgers",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.BobsBurgers.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PUBLIC",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Bobs Burgers"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:36:56.53Z",
- "updated_at": "2022-01-27T07:36:56.44Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDxAP2TJ1Gxq5rLtcQE58i1b",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Petes Coffee",
- "business_type": "INTERNATIONAL_ORGANIZATION",
- "doing_business_as": "Petes Coffee",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.PetesCoffee.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Petes Coffee"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:36:55.94Z",
- "updated_at": "2022-01-27T07:36:55.84Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDbXQoC8j4DoShzhQzap8R9W",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Bobs Burgers",
- "business_type": "TAX_EXEMPT_ORGANIZATION",
- "doing_business_as": "Bobs Burgers",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.BobsBurgers.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PUBLIC",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Bobs Burgers"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:36:55.28Z",
- "updated_at": "2022-01-27T07:36:55.18Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDqwZqmgukJsFGLAfLkBVcAM",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Dunder Mifflin",
- "business_type": "ASSOCIATION_ESTATE_TRUST",
- "doing_business_as": "Dunder Mifflin",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.DunderMifflin.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Dunder Mifflin"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:36:54.61Z",
- "updated_at": "2022-01-27T07:36:54.48Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "ID2RahCnmeXoGpWdZeNuoBw1",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Pollos Hermanos",
- "business_type": "PARTNERSHIP",
- "doing_business_as": "Pollos Hermanos",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.PollosHermanos.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Pollos Hermanos"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:36:53.82Z",
- "updated_at": "2022-01-27T07:36:53.62Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDp15SMzFRtu39HeXmictVFe",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Pollos Hermanos",
- "business_type": "LIMITED_LIABILITY_COMPANY",
- "doing_business_as": "Pollos Hermanos",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.PollosHermanos.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Pollos Hermanos"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:36:52.89Z",
- "updated_at": "2022-01-27T07:36:52.79Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDpYDM7J9n57q849o9E9yNrG",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": "CEO",
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "Petes Coffee",
- "business_type": "INDIVIDUAL_SOLE_PROPRIETORSHIP",
- "doing_business_as": "Petes Coffee",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": "0742",
- "dob": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "max_transaction_amount": 12000000,
- "amex_mid": null,
- "discover_mid": null,
- "url": "www.PetesCoffee.com",
- "annual_card_volume": 12000000,
- "has_accepted_credit_cards_previously": true,
- "incorporation_date": {
- "day": 27,
- "month": 6,
- "year": 1978
}, - "principal_percentage_ownership": 50,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": "Petes Coffee"
}, - "tags": {
- "Studio Rating": "4.7"
}, - "created_at": "2022-01-27T07:36:52.11Z",
- "updated_at": "2022-01-27T07:36:52.00Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}, - {
- "id": "IDuquemzE7UkUJioGJfVKBKt",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "entity": {
- "title": null,
- "first_name": "dwayne",
- "last_name": "Sunkhronos",
- "email": "user@example.org",
- "business_name": "BrainTree",
- "business_type": "LIMITED_LIABILITY_COMPANY",
- "doing_business_as": "BrainTree",
- "phone": "1234567890",
- "business_phone": "+1 (408) 756-4497",
- "personal_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 7",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "business_address": {
- "line1": "741 Douglass St",
- "line2": "Apartment 8",
- "city": "San Mateo",
- "region": "CA",
- "postal_code": "94114",
- "country": "USA"
}, - "mcc": null,
- "dob": {
- "day": 27,
- "month": 5,
- "year": 1978
}, - "max_transaction_amount": 1200000,
- "amex_mid": null,
- "discover_mid": null,
- "url": null,
- "annual_card_volume": 0,
- "has_accepted_credit_cards_previously": false,
- "incorporation_date": null,
- "principal_percentage_ownership": null,
- "short_business_name": null,
- "ownership_type": "PRIVATE",
- "tax_authority": null,
- "tax_id_provided": true,
- "business_tax_id_provided": true,
- "default_statement_descriptor": null
}, - "tags": {
- "application_name": "BrainTree"
}, - "created_at": "2022-01-27T07:36:33.52Z",
- "updated_at": "2022-01-27T07:36:33.61Z",
- "_links": {
- "verifications": {
}, - "merchants": {
}, - "settlements": {
}, - "authorizations": {
}, - "transfers": {
}, - "payment_instruments": {
}, - "associated_identities": {
}, - "disputes": {
}, - "application": {
}
}
}
]
}, - "_links": {
}, - "page": {
- "next_cursor": "IDuquemzE7UkUJioGJfVKBKt",
- "limit": 20
}
}
Verify an Identity
.
Single Verification object
Error
Authentication information is missing or invalid
Forbidden
Object does not exist
Not Acceptable
{- "merchant": "MUgWbPVvtKbzjKNNGKqdQYV7",
- "instrument": "PI3tfx1Uw3SzHfqwPFGX9o1Y",
- "processor": "DUMMY_V1",
- "identity": "ID2CGJmjqyYaQAu6qyuvGeWK",
- "tags": {
- "card_name": "Business_Card"
}
}
{- "id": "VIe5unscPYp95Vdtie3UwbLj",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "tags": {
- "card_name": "Business_Card"
}, - "messages": [ ],
- "raw": null,
- "processor": "DUMMY_V1",
- "state": "PENDING",
- "created_at": "2022-06-06T02:54:03.71Z",
- "updated_at": "2022-06-06T02:54:03.76Z",
- "trace_id": "be3fbea7-450e-4433-960f-f34756ff9931",
- "payment_instrument": null,
- "merchant": "MUgWbPVvtKbzjKNNGKqdQYV7",
- "identity": null,
- "merchant_identity": "ID2CGJmjqyYaQAu6qyuvGeWK",
- "_links": {
- "application": {
},
}
}
A Merchant
resource represents the entity's merchant account on a processor.
You need to create and successfully validate a Merchant
before processing any payments for your merchant.
Related Guides: Getting Started, Building Your Merchant Onboarding
Create a Merchant
to start the underwriting process for your merchant. Merchants
must be created under an Identity
.
A bank account must be associated with the previously created
Identity
before aMerchant
can be succefully onboarded and verified.
Merchant
resources can have three possible onboarding_states
:
PROVISIONING: The request is pending (the state may change after two minutes).
processing_enabled
: Falsesettlement_enabled
: FalseAPPROVED: The Merchant
has been approved and can begin processing payments.
processing_enabled
: Truesettlement_enabled
: TrueREJECTED: The Merchant
was rejected by the processor because of invalid information or it failed a regulatory and/or compliance check (e.g. KYC, OFAC, or MATCH). Make any changes that are needed, and try verifying the Merchant
again.
processing_enabled
: Falsesettlement_enabled
: FalseProvisioning a
Merchant
account is an asynchronous request. We recommend creating aWebhook
to listen for the state change.
Single Merchant object
Error
Authentication information is missing or invalid
Forbidden
Object does not exist
Not Acceptable
Error
{- "tags": {
- "key_2": "value_2"
}, - "processor": "DUMMY_V1"
}
{- "id": "MUucec6fHeaWo3VHYoSkUySM",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "identity": "IDpYDM7J9n57q849o9E9yNrG",
- "verification": "VIdikDHXv7x8nWyJg8JZemGx",
- "merchant_profile": "MPzW2oRPtkLxK3fymcMACFi",
- "processor": "DUMMY_V1",
- "processing_enabled": true,
- "settlement_enabled": true,
- "gross_settlement_enabled": false,
- "creating_transfer_from_report_enabled": true,
- "card_expiration_date_required": true,
- "card_cvv_required": false,
- "tags": {
- "key_2": "value_2"
}, - "mcc": "0742",
- "mid": "FNX7CwmebftudY7i5mA4qF6XT",
- "merchant_name": "Daphne's Corner",
- "settlement_funding_identifier": "UNSET",
- "ready_to_settle_upon": "RECONCILIATION",
- "fee_ready_to_settle_upon": "RECONCILIATION",
- "level_two_level_three_data_enabled": false,
- "created_at": "2022-01-27T07:36:58.19Z",
- "updated_at": "2022-01-27T07:36:58.46Z",
- "onboarding_state": "APPROVED",
- "processor_details": {
- "mid": "FNX7CwmebftudY7i5mA4qF6XT",
- "api_key": "secretValue"
}, - "_links": {
- "verifications": {
}, - "merchant_profile": {
}, - "application": {
}, - "verification": {
}
}
}
Retrieve a list of Merchants
.
List of Merchants objects
object | |
object List of | |
object For your convenience, every response includes several URLs which link to resources relevant to the request. You can use these |
Error
Authentication information is missing or invalid
Forbidden
Object does not exist
Not Acceptable
curl -i -X GET \ -u <username>:<password> \ 'https://finix.sandbox-payments-api.com/merchants?id=string&created_at.gte=created_at.gte%3D2019-06-15&created_at.lte=created_at.lte%3D2019-06-15&sort=string&after_cursor=string&limit=0&before_cursor=string'
{- "_embedded": {
- "merchants": [
- {
- "id": "MUgWbPVvtKbzjKNNGKqdQYV7",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "identity": "ID2CGJmjqyYaQAu6qyuvGeWK",
- "verification": "VImHtL3M26rtFueivcoTbexs",
- "merchant_profile": "MPqLEQcYhUQoyxe2SKuTFekf",
- "processor": "DUMMY_V1",
- "processing_enabled": true,
- "settlement_enabled": true,
- "gross_settlement_enabled": false,
- "creating_transfer_from_report_enabled": true,
- "card_expiration_date_required": true,
- "card_cvv_required": true,
- "tags": {
- "key_2": "value_2"
}, - "mcc": null,
- "mid": "FNXbrUD2h3AryEo26aTNbDMYH",
- "merchant_name": "Collen Wade",
- "settlement_funding_identifier": "UNSET",
- "ready_to_settle_upon": "RECONCILIATION",
- "fee_ready_to_settle_upon": "RECONCILIATION",
- "level_two_level_three_data_enabled": false,
- "created_at": "2022-06-05T18:03:24.80Z",
- "updated_at": "2022-06-05T18:04:00.89Z",
- "onboarding_state": "APPROVED",
- "processor_details": {
- "mid": "FNXbrUD2h3AryEo26aTNbDMYH",
- "api_key": "secretValue"
}, - "_links": {
- "verifications": {
}, - "merchant_profile": {
}, - "application": {
}, - "verification": {
}
}
}, - {
- "id": "MUucec6fHeaWo3VHYoSkUySM",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "identity": "IDpYDM7J9n57q849o9E9yNrG",
- "verification": "VI7nPHu84MA8iXoRVFwvD5Xm",
- "merchant_profile": "MPzW2oRPtkLxK3fymcMACFi",
- "processor": "DUMMY_V1",
- "processing_enabled": true,
- "settlement_enabled": true,
- "gross_settlement_enabled": false,
- "creating_transfer_from_report_enabled": true,
- "card_expiration_date_required": true,
- "card_cvv_required": false,
- "tags": {
- "key_2": "value_2"
}, - "mcc": "0742",
- "mid": "FNX4dDYTLszGmBkfACLwFHp7j",
- "merchant_name": "Bobs Burgers",
- "settlement_funding_identifier": "UNSET",
- "ready_to_settle_upon": "RECONCILIATION",
- "fee_ready_to_settle_upon": "RECONCILIATION",
- "level_two_level_three_data_enabled": false,
- "created_at": "2022-01-27T07:36:58.19Z",
- "updated_at": "2022-05-24T06:59:01.58Z",
- "onboarding_state": "APPROVED",
- "processor_details": {
- "mid": "FNX4dDYTLszGmBkfACLwFHp7j",
- "api_key": "secretValue"
}, - "_links": {
- "verifications": {
}, - "merchant_profile": {
}, - "application": {
}, - "verification": {
}
}
}
]
}, - "_links": {
}, - "page": {
- "next_cursor": "MUucec6fHeaWo3VHYoSkUySM",
- "limit": 20
}
}
Retrieve the details of a Merchant
.
Single Merchant object
id | string The ID of the resource. |
application | string ID of the |
identity | string The ID of the |
verification | string ID of the |
merchant_profile | string Details if a merchant's info was submitted to third-party processors for provisioning. |
processor | string Name of the transaction processor. |
processing_enabled | boolean Details if transaction processing is enabled for the |
settlement_enabled | boolean Details if settlement processing is enabled for the |
gross_settlement_enabled | boolean Set to true to enable gross settlements. |
creating_transfer_from_report_enabled | boolean Set to true to automatically create |
card_expiration_date_required | boolean Set to true to require the card's expiration date. |
card_cvv_required | boolean Set to true to require the card's CVV code. |
object Key value pair for annotating custom meta data (e.g. order numbers). | |
mcc | string or null The Merchant Category Code (MCC) that this merchant will be classified under. |
mid | string or null MID of the |
merchant_name | string The legal name saved in the |
settlement_funding_identifier | string Include addtional information (like the MID) when submitting funding |
ready_to_settle_upon | string Details how |
fee_ready_to_settle_upon | string Details how the |
level_two_level_three_data_enabled | boolean Set to true to enable the |
created_at | string <date-time> Timestamp of when the object was created. |
updated_at | string <date-time> Timestamp of when the object was last updated. |
onboarding_state | string Details the state of the |
object Additional details specific to the processor. | |
object For your convenience, every response includes several URLs which link to resources relevant to the request. You can use these |
Authentication information is missing or invalid
Forbidden
Object does not exist
Not Acceptable
curl -i -X GET \ -u <username>:<password> \ 'https://finix.sandbox-payments-api.com/merchants/{merchant_id}'
{- "id": "MUucec6fHeaWo3VHYoSkUySM",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "identity": "IDpYDM7J9n57q849o9E9yNrG",
- "verification": "VIdikDHXv7x8nWyJg8JZemGx",
- "merchant_profile": "MPzW2oRPtkLxK3fymcMACFi",
- "processor": "DUMMY_V1",
- "processing_enabled": true,
- "settlement_enabled": true,
- "gross_settlement_enabled": false,
- "creating_transfer_from_report_enabled": true,
- "card_expiration_date_required": true,
- "card_cvv_required": false,
- "tags": {
- "key_2": "value_2"
}, - "mcc": "0742",
- "mid": "FNX7CwmebftudY7i5mA4qF6XT",
- "merchant_name": "Daphne's Corner",
- "settlement_funding_identifier": "UNSET",
- "ready_to_settle_upon": "RECONCILIATION",
- "fee_ready_to_settle_upon": "RECONCILIATION",
- "level_two_level_three_data_enabled": false,
- "created_at": "2022-01-27T07:36:58.19Z",
- "updated_at": "2022-01-27T07:36:58.46Z",
- "onboarding_state": "APPROVED",
- "processor_details": {
- "mid": "FNX7CwmebftudY7i5mA4qF6XT",
- "api_key": "secretValue"
}, - "_links": {
- "verifications": {
}, - "merchant_profile": {
}, - "application": {
}, - "verification": {
}
}
}
Update a Merchant
to change the Identity
information saved with the underlying processor, or enable Level 2/3 processing.
Single Merchant object
id | string The ID of the resource. |
application | string ID of the |
identity | string The ID of the |
verification | string ID of the |
merchant_profile | string Details if a merchant's info was submitted to third-party processors for provisioning. |
processor | string Name of the transaction processor. |
processing_enabled | boolean Details if transaction processing is enabled for the |
settlement_enabled | boolean Details if settlement processing is enabled for the |
gross_settlement_enabled | boolean Set to true to enable gross settlements. |
creating_transfer_from_report_enabled | boolean Set to true to automatically create |
card_expiration_date_required | boolean Set to true to require the card's expiration date. |
card_cvv_required | boolean Set to true to require the card's CVV code. |
object Key value pair for annotating custom meta data (e.g. order numbers). | |
mcc | string or null The Merchant Category Code (MCC) that this merchant will be classified under. |
mid | string or null MID of the |
merchant_name | string The legal name saved in the |
settlement_funding_identifier | string Include addtional information (like the MID) when submitting funding |
ready_to_settle_upon | string Details how |
fee_ready_to_settle_upon | string Details how the |
level_two_level_three_data_enabled | boolean Set to true to enable the |
created_at | string <date-time> Timestamp of when the object was created. |
updated_at | string <date-time> Timestamp of when the object was last updated. |
onboarding_state | string Details the state of the |