Get Onboarding Status
GEThttps://account-mgmt-system.sandbox.splitit.com/api/v1/partner-profiles/account/:accountId
Call this endpoint to get the onboarding status of an account you added. You can add multiple documents at once. Authenticate with your bearer token.
Request
Path Parameters
accountId stringrequired
Id of the added account
Responses
- 200
- 404
- 500
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
Errors
object[]
StatusCode int32required
TraceId string
IsSuccess booleanrequired
Account
object
{
"Errors": [
{
"Code": "string",
"Message": "string",
"AdditionalInfo": "string"
}
],
"StatusCode": 0,
"TraceId": "string",
"IsSuccess": true,
"Account": {
"AccountId": "string",
"AccountName": "string",
"AccountEmail": "string",
"ApprovedDate": "2024-07-29T15:51:28.071Z",
"ParentId": "string",
"ParentName": "string",
"Status": "New",
"Terminals": [
{
"Name": "string",
"Apikey": "string"
}
]
}
}
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
Errors
object[]
StatusCode int32required
TraceId string
IsSuccess booleanrequired
{
"Errors": [
{
"Code": "string",
"Message": "string",
"AdditionalInfo": "string"
}
],
"StatusCode": 0,
"TraceId": "string",
"IsSuccess": true
}
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
Errors
object[]
StatusCode int32required
TraceId string
IsSuccess booleanrequired
{
"Errors": [
{
"Code": "string",
"Message": "string",
"AdditionalInfo": "string"
}
],
"StatusCode": 0,
"TraceId": "string",
"IsSuccess": true
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://account-mgmt-system.sandbox.splitit.com/api/v1/partner-profiles/account/:accountId' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
ResponseClear