すべての認証を取得する

全ての認証を取得する

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

このエンドポイントでは、登録されている全ての認証のデータを取得します。

Headers

Request Body

{
  "data": [
    {
      "company_certifications_id": string,
      "company_id": string
      // ... (データのサンプル)
    },
    {
      "company_certifications_id": string,
      "company_id": string
      // ... (データのサンプル)
    }
  ],
  "meta": {
    "total_pages": number,
    "total_rows": number,
    "order": string,
    "order_by": string,
    "limit": number,
    "offset": number,
    "next_key": string
  }
}

レスポンスデータの例を表示するには、応答の説明の右側にある右矢印をクリックしてください。

テスト用には https://api.sandbox.iafcertsearch.org/api/client/v1/mncb/cert を Sandbox サーバーで使用できます。

このメソッドを呼び出す方法を見てみましょう:

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