Upload Certification

Upload Certification

POST https://api.iafcertsearch.org/api/client/v2/cb/upload-cert

Fields that are marked with an asterisk (*) are mandatory.

Headers

Request Body

{
  "data": {
    "company_certifications_id": string
  }
}

Upload Certification

We recommend to have an interval of 1 minute in between API requests to avoid errors during certification data publication.

To view the response data example, click the right arrow at the right side of the response description.

You can also use https://api.sandbox.iafcertsearch.org/api/client/v1/cb/upload-cert to test it on the Sandbox server.

Take a look at how you might call this method:

curl --location --request POST 'https://api.iafcertsearch.org/api/client/v2/cb/upload-cert' \
--header 'Content-Type: application/json' \
--header 'x-http-authorization: <<API_KEY>>' \
--data-raw '{
    "certified_entity": {
        "certified_entity_unique_id": "string",
        "certified_entity_name": "string",
        "certified_entity_trading_name": "string",
        "certified_entity_english_name": "string",
        "confidential_certified_entity": "string",
        "business_registered_street": "string",
        "business_registered_city": "string",
        "business_registered_state": "string",
        "business_registered_zip_code": "string",
        "business_registered_country": "string",
        "business_registered_full_address": "string",
        "certified_entity_website": "string",
        "business_registration_number": "string",
        "tax_id": "string",
        "company_id_number": "string",
        "vat": "string",
        "duns_number": "string"
    },
    "certification": {
        "certificate_identity_number": "string",
        "certificate_number": "string",
        "certification_status": "string",
        "certificate_accreditation_status": "string",
        "certification_type": "string",
        "certification_scope": "string",
        "flexible_scope": "string",
        "certification_original_issue_date": "string",
        "certification_issue_date": "string",
        "certification_expiry_date": "string",
        "certified_entity_unique_id": "string",
        "main_site_street": "string",
        "main_site_city": "string",
        "main_site_state": "string",
        "main_site_zip_code": "string",
        "main_site_country": "string",
        "main_site_full_address": "string",
        "accreditation_body_name": "string",
        "accreditation_body_acronym_name": "string",
        "confidential_certified_entity": "string",
        "schemes": [
            {
                "scheme_name": "string",
                "standard_list": [
                    {
                        "standards_name": "string"
                    }
                ]
            }
        ],
        "cert_sites": [
            {
                "certified_entity_unique_id": "string",
                "site_type": "string",
                "street": "string",
                "city": "string",
                "state": "string",
                "zip_code": "string",
                "country": "string",
                "full_address": "string",
                "scope": "string"
            }
        ],
        "sectors": [
            {
                "sector_name": "string",
                "sector_code": "string"
            }
        ]
    }
}'

Last updated