POST
/
companies
/
email
/
verify
curl --request POST \
  --url https://client-api.dev.finhost.io/companies/email/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "companyId": "<string>",
  "code": "<string>"
}'
{
  "companyType": "<string>",
  "companyId": "<string>",
  "kyc": "<string>",
  "adm": "<string>",
  "id": "<string>",
  "name": "<string>",
  "position": "<string>",
  "email": "[email protected]"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200 - application/json
200 response

The response is of type object.