Account Number (Reserve)
Opening a brokerage account with StoneX is straightforward. Additionally, the procedure has been refined for the smoothest possible connection with your platform.
In this step, StoneX gives the user a reserved pre-defined account number.
POST
/account-api/v1/account-number
Request Body
Required Attributes
- Schema
- Example
This request must consist of the below StoneX identifiers:
Attributes | Data Type | Length | Description |
---|---|---|---|
subNumber | Integer | 3 | StoneX Introduced Broker-Dealer (IBD) number |
repCode | String | 4 | Assigned advisor under the rep code |
registrationType | Registration Type | Account type (i.e. individual, joint, etc...) |
{
"subNumber":"301",
"repCode":"JC01",
"registrationType":"individual"
}
Response Body
- Schema
- Example
A successful request will respond with a result containing the account number and account status
Attributes | Data Type | Length | Description |
---|---|---|---|
accountNumber | String | 8 | StoneX Account Number. Numeric only |
accountStatus | Account Status | Status of the account |
{
"statusCode": 200,
"message": "Request successful.",
"data": {
"accountNumber": "24370892",
"accountStatus": "Reserved"
},
"errors": [],
"traceId": "00-272526c8927c1ebeeb8a6ab6190955f2-12f79dde2986ac6c-01",
"hasErrors": false
}