인증서 업로드

자격증 업로드

POST https://api.iafcertsearch.org/api/client/v1/mncb/upload-cert

별표(*)로 표시된 필드는 필수입니다.

Headers

Request Body

{
  "data": true,
  "company_certifications_id": string
}

자격증 업로드

인증 데이터 게시 중에 오류를 피하려면 API 요청 간에 1분 간격을 유지하는 것이 좋습니다.

응답 데이터 예시를 보려면 응답 설명의 오른쪽 화살표를 클릭하세요.

Sandbox 서버에서 테스트하려면 https://api.sandbox.iafcertsearch.org/api/client/v1/mncb/upload-cert를 사용할 수도 있습니다.

이 방법을 호출하는 방법을 살펴보세요:

curl --location --request POST 'https://api.iafcertsearch.org/api/client/v1/mncb/upload-cert' \
--header 'Content-Type: application/json' \
--header 'x-http-authorization: <<API_KEY>>' \
--data-raw '{
	"certificate_number": "string",
	"certification_status": "string",
	"certificate_accreditation_status": "string",
	"certification_type": "string",
	"certification_scope": "string",
	"certification_original_issue_date": "string",
	"certification_issue_date": "string",
	"certification_expiry_date": "string",
	"certified_entity_name": "string",
	"certified_entity_english_name": "string",
	"certified_entity_trading_name": "string",
	"certified_entity_unique_id": "string",
	"certified_entity_street_address": "string",
	"certified_entity_street_city": "string",
	"certified_entity_state": "string",
	"certified_entity_post_code": "string",
	"certified_entity_country": "string",
	"certified_entity_website": "string",
	"confidential_certified_entity": "boolean",
	"accreditation_body_name": "string",
	"accreditation_body_acronym_name": "string",
	"certification_body_name": "string",
	"certification_body_acronym_name": "string",
	"schemes": [
		{
			"scheme_name": "string",
			"standard_list": [
				{
					"standards_name": "string"
				}
			]
		}
	],
	"sites": [
		{
			"street": "string",
			"city": "string",
			"state": "string",
			"country": "string",
			"postcode": "string",
			"scope_description": "string"
		}
	]
}'

Last updated