> 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-hi/api-integration/accreditation-body-apis/certification-body-api/retrieve-a-certification-body.md).

# एक प्रमाणपत्र निकाय प्राप्त करें

## सर्टिफिकेशन बॉडी प्राप्त करें

<mark style="color:blue;">`GET`</mark> `https://api.iafcertsearch.org/api/client/v1/ab/cb/{certification_bodies_id}`

यह एंडप्वाइंट एक एकल सर्टिफिकेशन बॉडी के डेटा को पुनर्प्राप्त करता है।

#### Headers

| Name                                                   | Type   | Description                                                                                                                                                   |
| ------------------------------------------------------ | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Content-Type<mark style="color:red;">\*</mark>         | String | application/json                                                                                                                                              |
| x-http-authorization<mark style="color:red;">\*</mark> | String | <p><https://iafcertsearch.org/import-management/api-integration> से प्राप्त API कुंजी</p><p>उदाहरण:</p><p><code>x-http-authorization: <\<API KEY>></code></p> |

{% tabs %}
{% tab title="200: OK अनुरोध सफल." %}

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

{% endtab %}

{% tab title="401: Unauthorized जब आप एक अवैध API कुंजी का उपयोग करते हैं, तो होता है।" %}

```json
{
    "error": true,
    "timestamp": number (Epoch time),
    "elapse": number,
    "errors": {
      "message": "अमान्य सत्र टोकन का उपयोग किया गया है।",
      "code": "invalid_session_token"
    }
}
```

{% endtab %}

{% tab title="404: Not Found जब IAF CertSearch डेटाबेस में सर्टिफिकेशन बॉडीज़ आईडी मौजूद नहीं है, तो होता है।" %}

```json
{
  "error": true,
  "timestamp": number (Epoch time),
  "elapse": number,
  "errors": {
    "message": "अनुरोधित स्रोत को नहीं मिला जा सकता है, लेकिन भविष्य में फिर से उपलब्ध हो सकता है। ग्राहक द्वारा आगामी अनुरोध संवादी हैं।",
    "code": "not_found"
  }
}
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
उत्तर डेटा का उदाहारण देखने के लिए, उत्तर विवरण के दाईं ओर दी गई दाईं तीर पर क्लिक करें।
{% endhint %}

{% hint style="info" %}
आप इसे सैंडबॉक्स सर्वर पर टेस्ट करने के लिए <https://api.sandbox.iafcertsearch.org/api/client/v1/ab/cb/{certification\\_bodies\\_id}> का उपयोग कर सकते हैं।
{% endhint %}

इस विधि को आप कैसे बुला सकते हैं, उसपर एक नज़र डालें:

{% tabs %}
{% tab title="cURL" %}

```shell
curl --location -g --request GET 'https://api.iafcertsearch.org/api/client/v1/ab/cb/{certification_bodies_id}' \
--header 'Content-Type: application/json' \
--header 'x-http-authorization: <<API_KEY>>'
```

{% endtab %}

{% tab title="Ruby" %}

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

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

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

request = Net::HTTP::Get.new(url)
request["Content-Type"] = "application/json"
request["x-http-authorization"] = "<<API_KEY>>"

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 = ''
headers = {
  'Content-Type': 'application/json',
  'x-http-authorization': '<<API_KEY>>'
}
conn.request("GET", "/api/client/v1/ab/cb/{certification_bodies_id}", 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/{certification_bodies_id}',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'GET',
  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, "");
Request request = new Request.Builder()
  .url("https://api.iafcertsearch.org/api/client/v1/ab/cb/{certification_bodies_id}")
  .method("GET", 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 config = {
  method: 'get',
  url: 'https://api.iafcertsearch.org/api/client/v1/ab/cb/{certification_bodies_id}',
  headers: { 
    'Content-Type': 'application/json', 
    'x-http-authorization': '<<API_KEY>>'
  }
};

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"
  "net/http"
  "io/ioutil"
)

func main() {

  url := "https://api.iafcertsearch.org/api/client/v1/ab/cb/{certification_bodies_id}"
  method := "GET"

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

  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/{certification_bodies_id}");
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("x-http-authorization", "<<API_KEY>>");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
```

{% endtab %}
{% endtabs %}
