> For the complete documentation index, see [llms.txt](https://support.iafcertsearch.org/api-developer-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://support.iafcertsearch.org/api-developer-guide/api-ar/api-integration/accreditation-body-apis/certification-body-api/update-certification-body.md).

# تحديث هيئة اعتماد الشهادات

## تحديث هيئة الشهادات

<mark style="color:orange;">`PUT`</mark> `https://api.iafcertsearch.org/api/client/v1/ab/cb`

الحقول المميزة بعلامة النجمة (`*`) إلزامية.

#### Headers

| Name                                                   | Type   | Description                                                                                                                                                 |
| ------------------------------------------------------ | ------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Content-Type<mark style="color:red;">\*</mark>         | String | application/json                                                                                                                                            |
| x-http-authorization<mark style="color:red;">\*</mark> | String | <p>مفتاح API المستلم من <https://iafcertsearch.org/import-management/api-integration></p><p>مثال:</p><p><code>x-http-authorization: <\<API KEY>></code></p> |

#### Request Body

| Name                                                                  | Type   | Description                                                           |
| --------------------------------------------------------------------- | ------ | --------------------------------------------------------------------- |
| certification\_bodies\_id<mark style="color:red;">\*</mark>           | String | مطلوب بدون certification\_bodies\_guid\_in\_ab                        |
| certification\_bodies\_guid\_in\_ab<mark style="color:red;">\*</mark> | String | مطلوب بدون certification\_bodies\_id                                  |
| certification\_bodies\_name                                           | String |                                                                       |
| certification\_bodies\_website                                        | String |                                                                       |
| certification\_bodies\_status                                         | String | <p>القيم المقبولة:</p><p>active،</p><p>suspended،</p><p>withdrawn</p> |
| country                                                               | String |                                                                       |

{% tabs %}
{% tab title="200: OK طلب ناجح." %}

```json
{
  "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"
  }
}
```

{% endtab %}

{% tab title="400: Bad Request أخطاء أخرى موجودة في استجابة الواجهة البرمجية." %}

```json
{
    "error": true,
    "timestamp": number (Epoch time),
    "elapse": number,
    "errors": {
      "message": "error_message",
      "code": "error_code"
    }
}
```

{% endtab %}

{% tab title="401: Unauthorized يحدث عند استخدام مفتاح API غير صالح." %}

```json
{
    "error": true,
    "timestamp": number (Epoch time),
    "elapse": number,
    "errors": {
      "message": "تم استخدام رمز جلسة غير صالح.",
      "code": "invalid_session_token"
    }
}
```

{% endtab %}

{% tab title="422: Unprocessable Entity لم يتم اجتياز التحقق." %}

```json
{
    "error": true,
    "timestamp": number (Epoch time),
    "elapse": number,
    "errors": {
        "code": "validation_error",
        "message": {
            "field_name": "error_message"
        }
    }
}
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
لعرض مثال على بيانات الاستجابة، انقر على السهم الأيمن في جانب الوصف الأيمن.
{% endhint %}

{% hint style="info" %}
يمكنك أيضًا استخدام <https://api.sandbox.iafcertsearch.org/api/client/v1/ab/cb> لاختباره على خادم الرمل.
{% endhint %}

تفضل بالنظر في كيفية استدعاء هذه الطريقة:

{% tabs %}
{% tab title="cURL" %}
{% code fullWidth="false" %}

```shell
curl --location --request PUT 'https://api.iafcertsearch.org/api/client/v1/ab/cb' \
--header 'Content-Type: application/json' \
--header 'x-http-authorization: <<API_KEY>>' \
--data-raw '{
	"certification_bodies_id": "string",
        "certification_bodies_guid_in_ab": "string",
        "certification_bodies_name": "string",
        "certification_bodies_website": "string",
        "certification_bodies_status": "string",
        "country": "string"
}'
```

{% endcode %}
{% endtab %}

{% tab title="Ruby" %}

```ruby
require "uri"
require "json"
require "net/http"

url = URI("https://api.iafcertsearch.org/api/client/v1/ab/cb")

https = Net::HTTP.new(url.host, url.port)
https.use_ssl = true

request = Net::HTTP::Put.new(url)
request["Content-Type"] = "application/json"
request["x-http-authorization"] = "<<API_KEY>>"
request.body = JSON.dump({
  "certification_bodies_id": "string",
  "certification_bodies_guid_in_ab": "string",
  "certification_bodies_name": "string",
  "certification_bodies_website": "string",
  "certification_bodies_status": "string",
  "country": "string"
})

response = https.request(request)
puts response.read_body
```

{% endtab %}

{% tab title="Python" %}

```python
import http.client
import json

conn = http.client.HTTPSConnection("api.iafcertsearch.org")
payload = json.dumps({
  "certification_bodies_id": "string",
  "certification_bodies_guid_in_ab": "string",
  "certification_bodies_name": "string",
  "certification_bodies_website": "string",
  "certification_bodies_status": "string",
  "country": "string"
})
headers = {
  'Content-Type': 'application/json',
  'x-http-authorization': '<<API_KEY>>'
}
conn.request("PUT", "/api/client/v1/ab/cb", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
```

{% endtab %}

{% tab title="PHP" %}

```php
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.iafcertsearch.org/api/client/v1/ab/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 => 'PUT',
  CURLOPT_POSTFIELDS =>'{
	"certification_bodies_id": "string",
        "certification_bodies_guid_in_ab": "string",
        "certification_bodies_name": "string",
        "certification_bodies_website": "string",
        "certification_bodies_status": "string",
        "country": "string"
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json',
    'x-http-authorization: <<API_KEY>>'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
```

{% endtab %}

{% tab title="Java" %}

```java
OkHttpClient client = new OkHttpClient().newBuilder()
  .build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\n    \"certification_bodies_id\": \"string\",\n    \"certification_bodies_guid_in_ab\": \"string\",\n    \"certification_bodies_name\": \"string\",\n    \"certification_bodies_website\": \"string\",\n    \"certification_bodies_status\": \"string\",\n    \"country\": \"string\"\n}");
Request request = new Request.Builder()
  .url("https://api.iafcertsearch.org/api/client/v1/ab/cb")
  .method("PUT", body)
  .addHeader("Content-Type", "application/json")
  .addHeader("x-http-authorization", "<<API_KEY>>")
  .build();
Response response = client.newCall(request).execute();
```

{% endtab %}

{% tab title="Node.js" %}

```javascript
var axios = require('axios');
var data = JSON.stringify({
  "certification_bodies_id": "string",
  "certification_bodies_guid_in_ab": "string",
  "certification_bodies_name": "string",
  "certification_bodies_website": "string",
  "certification_bodies_status": "string",
  "country": "string"
});

var config = {
  method: 'put',
  url: 'https://api.iafcertsearch.org/api/client/v1/ab/cb',
  headers: { 
    'Content-Type': 'application/json', 
    'x-http-authorization': '<<API_KEY>>'
  },
  data : data
};

axios(config)
.then(function (response) {
  console.log(JSON.stringify(response.data));
})
.catch(function (error) {
  console.log(error);
});
```

{% endtab %}

{% tab title="Go" %}

```go
package main

import (
  "fmt"
  "strings"
  "net/http"
  "io/ioutil"
)

func main() {

  url := "https://api.iafcertsearch.org/api/client/v1/ab/cb"
  method := "PUT"

  payload := strings.NewReader(`{
    "certification_bodies_id": "string",
    "certification_bodies_guid_in_ab": "string",
    "certification_bodies_name": "string",
    "certification_bodies_website": "string",
    "certification_bodies_status": "string",
    "country": "string"
}
`)

  client := &http.Client {
  }
  req, err := http.NewRequest(method, url, payload)

  if err != nil {
    fmt.Println(err)
    return
  }
  req.Header.Add("Content-Type", "application/json")
  req.Header.Add("x-http-authorization", "<<API_KEY>>")

  res, err := client.Do(req)
  if err != nil {
    fmt.Println(err)
    return
  }
  defer res.Body.Close()

  body, err := ioutil.ReadAll(res.Body)
  if err != nil {
    fmt.Println(err)
    return
  }
  fmt.Println(string(body))
}
```

{% endtab %}

{% tab title="C#" %}

```csharp
var client = new RestClient("https://api.iafcertsearch.org/api/client/v1/ab/cb");
client.Timeout = -1;
var request = new RestRequest(Method.PUT);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("x-http-authorization", "<<API_KEY>>");
var body = @"{" + "\n" +
@"    ""certification_bodies_id"": ""string""," + "\n" +
@"    ""certification_bodies_guid_in_ab"": ""string""," + "\n" +
@"    ""certification_bodies_name"": ""string""," + "\n" +
@"    ""certification_bodies_website"": ""string""," + "\n" +
@"    ""certification_bodies_status"": ""string""," + "\n" +
@"    ""country"": ""string""" + "\n" +
@"}";
request.AddParameter("application/json", body,  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://support.iafcertsearch.org/api-developer-guide/api-ar/api-integration/accreditation-body-apis/certification-body-api/update-certification-body.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
