Retrieve all Certifications

Retrieve all Certifications

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

This endpoint retrieves the data of all registered certifications.

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

Request Body

NameTypeDescription

limit

String

Limit

offset

String

Offset

{
  "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,
      "accreditation_bodies_name": string,
      "certification_bodies_name": string,
      "certification_bodies_accreditation_status": string,
      "withdrawn_at": number,
      "scheme_name": string,
      "iaf_mla_count": number,
      "standards": [
        {
          "is_accredited_mla": number,
          "standards_id": string,
          "standards_name": string,
          "standards_document_type": string,
          "scheme_name": string
        }
      ]
    },
    {
      "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,
      "accreditation_bodies_name": string,
      "certification_bodies_name": string,
      "certification_bodies_accreditation_status": string,
      "withdrawn_at": number,
      "scheme_name": string,
      "iaf_mla_count": number,
      "standards": [
        {
          "is_accredited_mla": number,
          "standards_id": string,
          "standards_name": string,
          "standards_document_type": string,
          "scheme_name": string
        }
      ]
    }
  ],
  "meta": {
    "total_pages": number,
    "total_rows": number,
    "order": string,
    "order_by": string,
    "limit": number,
    "offset": number,
    "next_key": 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 to test it on the Sandbox server.

Take a look at how you might call this method:

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

Last updated