Get details of an individual company director appointment by identity number
Last updated 5 months ago
Was this helpful?
curl -L \ --request POST \ --url 'https://cipc-apm-rs-dev.azure-api.net/enterprise/v1/employee-verification' \ --header 'Ocp-Apim-Subscription-Key: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "identity_number": "8205305555555" }'
{ "director_list": [ { "identity_number": "string", "first_names": "string", "surname": "string", "initials": "string", "director_status": "string", "role": "string", "member_size_interest": 0, "member_contribution": 0, "appointment_date": "string", "resignation_date": "string", "enterprise_details": [ { "enterprise_number": "string", "enterprise_name": "string", "enterprise_type": "string", "enterprise_status": "string", "registration_date": "string" } ] } ] }