すべての認証を取得する
全ての認証を取得する
GET
https://api.iafcertsearch.org/api/client/v1/mncb/cert
このエンドポイントでは、登録されている全ての認証のデータを取得します。
Headers
Name
Type
Description
Content-Type*
String
application/json
x-http-authorization*
String
https://iafcertsearch.org/import-management/api-integration から受け取った API キー
Example:
x-http-authorization: <<API KEY>>
Request Body
Name
Type
Description
limit
String
Limit
offset
String
Offset
{
"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
}
}
このメソッドを呼び出す方法を見てみましょう:
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