Skip to main content
POST
/
kyb
/
companies
/
{id}
/
change-status
Change company status
curl --request POST \
  --url https://api.example.com/kyb/companies/{id}/change-status/ \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "PENDING"
}
'
{
  "status": "PENDING"
}

Authorizations

Authorization
string
header
required

The request must contain basic auth headers where username is API key and password is API secret.
In order for you to start using our API you will need an API key and API secret.
Both can be retrieved by contacting iDenfy's support or iDenfy's sales team.

Path Parameters

id
string
required

A unique value identifying this company.

Body

application/json
status
enum<string>
Available options:
PENDING,
PROCESSING,
NEED_TO_PROCESS,
NEED_TO_REVIEW,
COMPLETED

Response

200 - application/json
status
enum<string>
Available options:
PENDING,
PROCESSING,
NEED_TO_PROCESS,
NEED_TO_REVIEW,
COMPLETED