प्रमाणपत्र निकाय अपलोड
प्रमाणपत्र शरीर अपलोड करें
POST
https://api.iafcertsearch.org/api/client/v1/ab/upload-cb
की गई फ़ील्ड्स जिन्हें एक तारा (*) द्वारा चिह्नित किया गया है, वे अनिवार्य हैं।
Headers
Content-Type*
String
application/json
x-http-authorization*
String
Request Body
certification_body_identity_number*
String
certification_body_name*
String
certification_body_acronym*
String
country*
String
description
String
accreditation_status*
String
स्वीकृत मूल्य:
active,
suspended,
withdrawn
office_directories
Array
उदाहरण
{
"office_directories": [
{
"office_type": "string",
"country": "string",
"street": "string",
"state": "string",
"city": "string",
"zip_code": "string"
}
]
}
certification_body_countries
Array
उदाहरण
{
"certification_body_countries": [
{
"country": "string"
}
]
}
standard_and_schemes
Array
उदाहरण
{
"standard_and_schemes": [
{
"standard_code": "string",
"issue_date": "string",
"first_issue_date": "string",
"expiry_date": "string",
"scheme_name": "string",
"scope_type": "string",
"standard_status": "string"
}
]
}
technical_sectors
Array
उदाहरण
{
"technical_sectors": [
{
"sector_title": "string",
"scheme_name": "string"
}
]
}
{
"data": {
"certification_bodies_id": string
}
}
इस विधि को कैसे कॉल कर सकते हैं, इसे देखें:
curl --location --request POST 'https://api.iafcertsearch.org/api/client/v1/ab/upload-cb' \
--header 'Content-Type: application/json' \
--header 'x-http-authorization: <<API_KEY>>' \
--data-raw '{
"certification_body_identity_number": "string",
"certification_body_name": "string",
"certification_body_acronym": "string",
"country": "string",
"description": "string",
"accreditation_status": "string",
"office_directories": [
{
"office_type": "string",
"country": "string",
"street": "string",
"state": "string",
"city": "string",
"zip_code": "string",
}
],
"certification_body_countries": [
{
"country": "string"
}
],
"standard_and_schemes": [
{
"standard_code": "string",
"issue_date": "string",
"first_issue_date": "string",
"expiry_date": "string",
"scheme_name": "string",
"scope_type": "string",
"standard_status": "string"
}
],
"technical_sectors": [
{
"sector_title": "string",
"scheme_name": "string"
}
]
}'
Last updated