Update Certified Entity Details

This endpoint allows you to update Certified Entity details specified with its GUID.

PUT https://api.iafcertsearch.org/api/client/v1/cb/ce-by-guid

The company_guid field is always required. Other fields that are marked with an asterisk (*) are mandatory if present in the request body.

Headers

NameTypeDescription

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

NameTypeDescription

company_guid*

String

A unique identifier for a specific Certified Entity. Used as a reference or a tracking number to look up Certified Entity records in the IAF CertSearch database.

company_trading_name

String

Company Trading Name Example: Test Food and Logistics Inc. Trading Name Reliable Logistics Services Inc. Trading Name

company_en_name

String

Company English Name Example: Test Food and Logistics Inc. English Name Reliable Logistics Services Inc. English Name

company_country*

String

Country/Economy of the main entity address for the certified entity.

company_street

String

Company Street

company_city

String

Company City

company_state

String

Company State

company_postcode

String

Company Post Code

company_website

String

Company Website

system_information

String

System Information Information of a specific Certified Entity used by the IAF CertSearch database. Example: "system_information" : {

"company_name" : "string",

"company_guids" : [

"string",

"string"

]

},

or

"system_information": [

{

"company_name": "string",

"company_guid": "string"

}

]

company_id_number

String

Company Identification Number

Example:

U12345ABCDE12345F123456

business_registration_number

String

Business Registration Number

Example:

1234567890A

tax_id

String

Tax Identification

Example:

000123456001

{
    "data": {
        "company_id": "string",
        "company_name": "string",
        "company_trading_name": "string",
        "company_street": "string",
        "company_city": "string",
        "company_suburb": "string",
        "company_postcode": "string",
        "company_state": "string",
        "company_country": "string",
        "company_email": "string",
        "company_status": "string",
        "company_type": "string",
        "company_contact": "string",
        "company_logo": "[]",
        "company_banner": "[]",
        "countries_id": number,
        "company_website": "string",
        "company_tz": number,
        "company_tz_text": "string",
        "company_hash": "string",
        "company_guid": "string",
        "company_phone": "string",
        "company_business_type": "string",
        "company_address": "string",
        "company_en_name": "string",
        "tax_id": "string",
        "business_reg_number": "string",
        "company_id_number": "string",
        "qualitytrade_id": number,
        "qualitytrade_hash": "string"    ,
        "company_search_limit": number,
        "is_confidential": number,
        "activated_at": date,
        "created_at": date,
        "updated_at": date
    }
}

To view the response data example, click the right arrow at the right side of the response description.

You can also use https://api.sandbox.iafcertsearch.org/api/client/v1/cb/ce-by-guid to test it on the Sandbox server.

Take a look at how you might call this method:

curl --location --request PUT 'https://api.iafcertsearch.org/api/client/v1/cb/ce-by-guid' \
--header 'x-http-authorization: <<API_KEY>>' \
--header 'Content-Type: application/json' \
--header 'User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36' \
--data-raw '{
    "company_guid" : "string",
    "company_trading_name": "string",
    "company_en_name": "string",
    "company_country": "string",
    "company_street": "string",
    "company_city": "string",
    "company_state": "string",
    "company_postcode": "string",
    "company_website": "string",
    "tax_id": "string",
    "business_registration_number":: "string",
    "company_id_number": "string",
    "system_information":{
        "company_name": "string",
        "company_guids": [
            "string",
            "string"
        ]
    }
}'

Last updated