<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.iafcertsearch.org/api/client/v1/ab/upload-cb',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"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"
}
]
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json',
'x-http-authorization: <<API_KEY>>'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;