Zertifizierung hochladen

Zertifizierung hochladen

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

Felder, die mit einem Asterisk (*) markiert sind, sind obligatorisch.

Headers

NameTypeDescription

Content-Type*

String

application/json

x-http-authorization*

String

API-Schlüssel von https://iafcertsearch.org/import-management/api-integration erhalten

Beispiel:

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

Request Body

NameTypeDescription

certificate_number*

String

certification_status*

String

Akzeptierte Werte:

active

inactive

suspended

cancelled

hidden

withdrawn

expired

*Hinweis: Zertifizierungen, die über die API mit dem versteckt Zertifizierungsstatus hochgeladen werden, werden beim Anmelden bei IAF CertSearch als "Entwurf" angezeigt.

certificate_accreditation_status

String

Akzeptierte Werte:

Accredited

Unaccredited

certification_type*

String

certification_scope

String

certification_original_issue_date

String

Format: JJJJMMTT

certification_issue_date*

String

Format: JJJJMMTT

certification_expiry_date*

String

Format: JJJJMMTT

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*

Array

Beispiel

{

"schemes": [

{

"scheme_name": "string",

"standard_list": [

{

"standards_name": "string"

}

]

}

]

}

sites

Array

Beispiel

{

"sites": [

{

"street": "string",

"city": "string",

"state": "string",

"country": "string",

"postcode": "string",

"scope_description": "string

}

]

}

Um alle vorhandenen Standorte einer Zertifizierung zu löschen, setzen Sie den Wert des sites-Schlüssels auf ein leeres Array wie folgt:

{

"sites": []

}

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

Zertifizierung hochladen

Wir empfehlen, zwischen API-Anfragen ein Intervall von 1 Minute einzuhalten, um Fehler bei der Veröffentlichung von Zertifizierungsdaten zu vermeiden.

Um das Beispiel der Antwortdaten anzusehen, klicken Sie auf den Pfeil nach rechts auf der rechten Seite der Antwortbeschreibung.

Sie können auch https://api.sandbox.iafcertsearch.org/api/client/v1/mncb/upload-cert verwenden, um es auf dem Sandbox-Server zu testen.

Werfen Sie einen Blick darauf, wie Sie diese Methode aufrufen könnten:

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