Accounts
Check Account
Check if an account meets all the minimum requirements needed to operate, returning the missing information.
GET
/
accounts
/
{email}
/
check
Path
curl --request GET \
--url https://api-test.koywe.com/rest/accounts/{email}/check
{
"canOperate": true,
"errors": [
{
"field": "document.documentNumber",
"message": "document number is required"
}
]
}
Path Parameters
email
string
requiredEmail associated with the currency of choice.
Response
200 - application/json
canOperate
boolean
errors
object[]
curl --request GET \
--url https://api-test.koywe.com/rest/accounts/{email}/check
{
"canOperate": true,
"errors": [
{
"field": "document.documentNumber",
"message": "document number is required"
}
]
}