Path Parameters
The ID of the company
Body
application/json
The registration number of the company
Example:
"123456789"
Response
Company registration completed
curl --request PUT \
--url https://app.pennylane.com/api/external/v2/companies/{id}/complete_registration \
--header 'Content-Type: application/json' \
--data '{
"reg_no": "123456789"
}'
This response does not have an example.
This endpoint is used to complete the registration of a company. In order to authenticate the request, a valid OAuth2 token must be provided. The token must have the capital_deposits
scope and be generated with authorization_code
grant type.
curl --request PUT \
--url https://app.pennylane.com/api/external/v2/companies/{id}/complete_registration \
--header 'Content-Type: application/json' \
--data '{
"reg_no": "123456789"
}'
This response does not have an example.
The ID of the company
The registration number of the company
"123456789"
Company registration completed
Was this page helpful?