Note: the term seller account has been deprecated and will be removed in future versions. Please use sub account instead
Create a JustiFi account for your customer, so they can process payments (once approved by JustiFi). The seller will be created as part of your platform. If you use your test credentials, the seller you create will have one account with the account_type
of test
. If you use your live credentials, the seller you create will have two accounts -- one with the account_type
of test
and another with the account_type
of live
. This allows you to perform test operations on your real sellers by using their test
account. When viewing the data payload for any seller account, you can reference the related_accounts
attribute to get the test_account_id
and live_account_id
(if present) for that seller.
Note: seller account is deprecated, please use sub account
Seller account was created successfully
{- "name": "Seller account name"
}
{- "id": 1,
- "type": "seller_account",
- "data": {
- "id": "acc_xyz",
- "name": "The Shire Haberdashery",
- "account_type": "live",
- "status": "enabled",
- "currency": "usd",
- "platform_account_id": "acc_xyz",
- "application_fee_rates": [ ],
- "processing_ready": false,
- "payout_ready": false,
- "related_accounts": {
- "live_account_id": "acc_xyz",
- "test_account_id": "acc_xyz"
}, - "created_at": "2021-01-01T12:00:00Z",
- "updated_at": "2021-01-01T12:00:00Z"
}, - "page_info": "string"
}
List the sellers for your account. This endpoint supports pagination.
Note: By default, all sellers which are not archived will be returned. To list archived sellers, use the optional status parameter set to archived
Note: seller account is deprecated, please use sub account
Successfully list seller accounts
{- "id": 1,
- "type": "array",
- "data": [
- {
- "id": "acc_xyz",
- "name": "The Shire Haberdashery",
- "account_type": "live",
- "status": "enabled",
- "currency": "usd",
- "platform_account_id": "acc_xyz",
- "application_fee_rates": [ ],
- "processing_ready": false,
- "payout_ready": false,
- "related_accounts": {
- "live_account_id": "acc_xyz",
- "test_account_id": "acc_xyz"
}, - "created_at": "2021-01-01T12:00:00Z",
- "updated_at": "2021-01-01T12:00:00Z"
}
], - "page_info": {
- "end_cursor": "WyIyMDIyLTAyLTA4IDE5OjUyOjM3LjEwNDE3MzAwMCIsIjY4MDliYTU5LTYxYjctNDg3MS05YWFiLWE2Y2MyNmY3M2M1ZCJd",
- "has_next": false,
- "has_previous": false,
- "start_cursor": "WyIyMDIyLTAyLTA4IDIwOjAxOjU4LjEyMDIzMjAwMCIsIjU5ZTFjNGI1LWFlOWQtNDIyZC04MTVkLWNjNzQ5NzdlYmFjYSJd"
}
}
Get information about a seller account. Note: seller account is deprecated, please use sub account
Successfully get a seller account
{- "id": 1,
- "type": "seller_account",
- "data": {
- "id": "acc_xyz",
- "name": "The Shire Haberdashery",
- "account_type": "live",
- "status": "enabled",
- "currency": "usd",
- "platform_account_id": "acc_xyz",
- "application_fee_rates": [ ],
- "processing_ready": false,
- "payout_ready": false,
- "related_accounts": {
- "live_account_id": "acc_xyz",
- "test_account_id": "acc_xyz"
}, - "created_at": "2021-01-01T12:00:00Z",
- "updated_at": "2021-01-01T12:00:00Z"
}, - "page_info": "string"
}