> 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/upload-certification-body.md).

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

## رفع هيئة التحقق

<mark style="color:green;">`POST`</mark> `https://api.iafcertsearch.org/api/client/v1/ab/upload-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\_body\_identity\_number<mark style="color:red;">\*</mark> | String |                                                                                                                                                                                                                                                                                                                                 |
| certification\_body\_name<mark style="color:red;">\*</mark>             | String |                                                                                                                                                                                                                                                                                                                                 |
| certification\_body\_acronym<mark style="color:red;">\*</mark>          | String |                                                                                                                                                                                                                                                                                                                                 |
| country<mark style="color:red;">\*</mark>                               | String |                                                                                                                                                                                                                                                                                                                                 |
| description                                                             | String |                                                                                                                                                                                                                                                                                                                                 |
| accreditation\_status<mark style="color:red;">\*</mark>                 | String | <p>القيم المقبولة:</p><p>active,</p><p>suspended,</p><p>withdrawn</p>                                                                                                                                                                                                                                                           |
| office\_directories                                                     | Array  | <p>مثال</p><p>{</p><p>"office\_directories": \[</p><p>{</p><p>"office\_type": "string",</p><p>"country": "string",</p><p>"street": "string",</p><p>"state": "string",</p><p>"city": "string",</p><p>"zip\_code": "string"</p><p>}</p><p>]</p><p>}</p>                                                                           |
| certification\_body\_countries                                          | Array  | <p>مثال</p><p>{</p><p>"certification\_body\_countries": \[</p><p>{</p><p>"country": "string"</p><p>}</p><p>]</p><p>}</p>                                                                                                                                                                                                        |
| standard\_and\_schemes                                                  | Array  | <p>مثال</p><p>{</p><p>"standard\_and\_schemes": \[</p><p>{</p><p>"standard\_code": "string",</p><p>"issue\_date": "string",</p><p>"first\_issue\_date": "string",</p><p>"expiry\_date": "string",</p><p>"scheme\_name": "string",</p><p>"scope\_type": "string",</p><p>"standard\_status": "string"</p><p>}</p><p>]</p><p>}</p> |
| technical\_sectors                                                      | Array  | <p>مثال</p><p>{</p><p>"technical\_sectors": \[</p><p>{</p><p>"sector\_title": "string",</p><p>"scheme\_name": "string"</p><p>}</p><p>]</p><p>}</p>                                                                                                                                                                              |

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

```json
{
  "data": {
    "certification_bodies_id": string
  }
}
```

{% endtab %}

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

```json
{
    "error": true,
    "timestamp": number (وقت Epoch),
    "elapse": number,
    "errors": {
      "message": "رسالة الخطأ",
      "code": "رمز الخطأ"
    }
}
```

{% endtab %}

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

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

{% endtab %}

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

```json
{
    "error": true,
    "timestamp": number (وقت Epoch),
    "elapse": number,
    "errors": {
        "code": "validation_error",
        "message": {
            "field_name": "رسالة الخطأ"
        }
    }
}
```

{% endtab %}
{% endtabs %}

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

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

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

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

```shell
curl --location --request POST 'https://api.iafcertsearch.org/api/client/v1/ab/upload-cb' \
--header 'Content-Type: application/json' \
--header 'x-http-authorization: <<API_KEY>>' \
--data-raw '{
	"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"
		}
	]
}'
```

{% endcode %}
{% endtab %}

{% tab title="Ruby" %}

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

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

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

request = Net::HTTP::Post.new(url)
request["Content-Type"] = "application/json"
request["x-http-authorization"] = "<<API_KEY>>"
request.body = JSON.dump({
  "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"
    }
  ]
})

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_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"
    }
  ]
})
headers = {
  'Content-Type': 'application/json',
  'x-http-authorization': '<<API_KEY>>'
}
conn.request("POST", "/api/client/v1/ab/upload-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/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;
```

{% endtab %}

{% tab title="Java" %}

```java
OkHttpClient client = new OkHttpClient().newBuilder()
  .build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\n    \"certification_body_identity_number\": \"string\",\n    \"certification_body_name\": \"string\",\n    \"certification_body_acronym\": \"string\",\n    \"country\": \"string\",\n    \"description\": \"string\",\n    \"accreditation_status\": \"string\",\n    \"office_directories\": [\n        {\n            \"office_type\": \"string\",\n            \"country\": \"string\",\n            \"street\": \"string\",\n            \"state\": \"string\",\n            \"city\": \"string\",\n            \"zip_code\": \"string\"\n        }\n    ],\n    \"certification_body_countries\": [\n        {\n            \"country\": \"string\"\n        }\n    ],\n    \"standard_and_schemes\": [ \n        {\n            \"standard_code\": \"string\",\n            \"issue_date\": \"string\",\n            \"first_issue_date\": \"string\",\n            \"expiry_date\": \"string\",\n            \"scheme_name\": \"string\",\n            \"scope_type\": \"string\",\n            \"standard_status\": \"string\"\n        }\n    ],\n    \"technical_sectors\": [\n        {\n            \"sector_title\": \"string\",\n            \"scheme_name\": \"string\"\n        }\n    ]\n}\n");
Request request = new Request.Builder()
  .url("https://api.iafcertsearch.org/api/client/v1/ab/upload-cb")
  .method("POST", 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_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"
    }
  ]
});

var config = {
  method: 'post',
  url: 'https://api.iafcertsearch.org/api/client/v1/ab/upload-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/upload-cb"
  method := "POST"

  payload := strings.NewReader(`{
    "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"
        }
    ]
}
`)

  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/upload-cb");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("x-http-authorization", "<<API_KEY>>");
var body = @"{" + "\n" +
@"    ""certification_body_identity_number"": ""string""," + "\n" +
@"    ""certification_body_name"": ""string""," + "\n" +
@"    ""certification_body_acronym"": ""string""," + "\n" +
@"    ""country"": ""string""," + "\n" +
@"    ""description"": ""string""," + "\n" +
@"    ""accreditation_status"": ""string""," + "\n" +
@"    ""office_directories"": [" + "\n" +
@"        {" + "\n" +
@"            ""office_type"": ""string""," + "\n" +
@"            ""country"": ""string""," + "\n" +
@"            ""street"": ""string""," + "\n" +
@"            ""state"": ""string""," + "\n" +
@"            ""city"": ""string""," + "\n" +
@"            ""zip_code"": ""string""" + "\n" +
@"        }" + "\n" +
@"    ]," + "\n" +
@"    ""certification_body_countries"": [" + "\n" +
@"        {" + "\n" +
@"            ""country"": ""string""" + "\n" +
@"        }" + "\n" +
@"    ]," + "\n" +
@"    ""standard_and_schemes"": [ " + "\n" +
@"        {" + "\n" +
@"            ""standard_code"": ""string""," + "\n" +
@"            ""issue_date"": ""string""," + "\n" +
@"            ""first_issue_date"": ""string""," + "\n" +
@"            ""expiry_date"": ""string""," + "\n" +
@"            ""scheme_name"": ""string""," + "\n" +
@"            ""scope_type"": ""string""," + "\n" +
@"            ""standard_status"": ""string""" + "\n" +
@"        }" + "\n" +
@"    ]," + "\n" +
@"    ""technical_sectors"": [" + "\n" +
@"        {" + "\n" +
@"            ""sector_title"": ""string""," + "\n" +
@"            ""scheme_name"": ""string""" + "\n" +
@"        }" + "\n" +
@"    ]" + "\n" +
@"}" + "\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/upload-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.
