Update Certification Body Accreditation Status
Update Certification Body Accreditation Status
PUT
https://api.iafcertsearch.org/api/client/v1/ab/cb/update-accreditation-status
Fields that are marked with an asterisk (*
) are mandatory.
Headers
Content-Type*
String
application/json
x-http-authorization*
String
API Key received from https://iafcertsearch.org/import-management/api-integration
Example:
x-http-authorization: <<API KEY>>
Request Body
certification_bodies_id*
String
Certification Body ID Required without certification_bodies_guid_in_ab
certification_bodies_guid_in_ab*
String
Certification Body GUID in AB Required without certification_bodies_id
accreditation_status*
String
Accreditation Status include the terms that the Accreditation Body uses to define the accreditation status of the Certification Body. Accepted Values: Active (valid) Withdrawn (expired) Suspended
{
"data": {
"certification_bodies_id": "string",
"certification_bodies_name": "string",
"certification_bodies_desc": "string",
"certification_bodies_website": "string",
"certification_bodies_email": "string",
"certification_bodies_phone": "string",
"certification_bodies_status": "string",
"certification_bodies_tier": "string",
"certification_bodies_acronym": "string",
"countries_id": "string",
"files": "array",
"certification_bodies_location": "string",
"certification_bodies_fax": "string",
"certification_bodies_contact": "string",
"certification_bodies_open_certs_to_ab": "string",
"certification_bodies_guid": "string",
"certification_bodies_want_active": "string",
"certification_bodies_searchable": "string",
"activated_at": "string",
"created_at": "string",
"updated_at": "string",
"country_name": "string",
"country_code": "string",
"certification_bodies_guid_in_ab": "string",
"certification_bodies_accreditation_status": "string",
"certification_bodies_name_from_ab": "string",
"withdrawn_at": "string",
"company_size": "string",
"company_industries": "array"
}
}
Take a look at how you might call this method:
curl --location --request PUT 'https://api.iafcertsearch.org/api/client/v1/ab/cb/update-accreditation-status' \
--header 'Content-Type: application/json' \
--header 'x-http-authorization: <<API_KEY>>' \
--data-raw '{
"certification_bodies_id": "string",
"certification_bodies_guid_in_ab": "string",
"accreditation_status": "string"
}'
Last updated