Retrieve a Certification

Retrieve a Certification

GET https://api.iafcertsearch.org/api/client/v1/mncb/cert/{company_certifications_id}

This endpoint retrieves the data of a single certification.

Headers

NameTypeDescription

x-http-authorization*

String

API Key received from https://iafcertsearch.org/import-management/api-integration

Example:

x-http-authorization: <<API KEY>>

Content-Type*

String

application/json

{
  "data": {
    "company_certifications_id": string,
    "company_id": string,
    "scope_description": string,
    "issue_date": string,
    "expiry_date": string,
    "original_issue_date": string,
    "status": string,
    "type": string,
    "model_number": string,
    "certification_number": string,
    "certification_bodies_id": string,
    "accreditation_bodies_id": string,
    "standards_id": string,
    "accreditation_status": string,
    "scheme_id": string,
    "created_at": number,
    "updated_at": number,
    "company_name": string,
    "certification_bodies_name": string,
    "accreditation_bodies_name": string,
    "certification_bodies_accreditation_status": string,
    "withdrawn_at": number,
    "scheme_name": string,
    "standards": [
      {
        "is_accredited_mla": number,
        "standards_id": string,
        "standards_name": string,
        "standards_document_type": string,
        "scheme_name": string
      }
    ]
  }
}

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/mncb/cert/{company_certifications_id} to test it on the Sandbox server.

Take a look at how you might call this method:

curl --location -g --request GET 'https://api.iafcertsearch.org/api/client/v1/mncb/cert/{company_certifications_id}' \
--header 'Content-Type: application/json' \
--header 'x-http-authorization: <<API_KEY>>'

Last updated