Update Certified Entity Name

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

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

Fields that are marked with an asterisk (*) are mandatory.

Headers

NameTypeDescription

x-http-authorization*

String

API Key received from https://iafcertsearch.org/import-management/api-integration

Example:

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

Content-Type*

String

application/json

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_name*

String

Company Name

{
    "data": {
        "company_id": "string",
        "company_name": "string",
        "company_trading_name": "string",
        "company_street": "string",
        "company_city": "string",
        "company_postcode": "string",
        "company_state": "string",
        "company_country": "string",
        "company_type": "string",
        "countries_id": number,
        "company_guid": "string",
        "company_en_name": "string",
        "tax_id": "string",
        "vat": "string",
        "duns_number": "string",
        "business_reg_number": "string",
        "company_id_number": "string",
        "is_confidential": number,
        "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-name-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/v2/cb/ce-name-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_name" : "string"
}'

Last updated