IAF CertSearch
  • IAF CertSearch Technical Instructions
  • File Upload
    • Getting started
    • How it works
    • How to set up
  • FTP Access
    • Getting started
    • How it works
    • How to set up
    • How to test connection
  • API Access
    • Getting started
    • Authentication
    • Requests
    • Responses
    • Errors
    • Accreditation Body APIs
      • Certification API
        • Upload Certification
        • Retrieve all Certifications
        • Retrieve a Certification
    • Certification Body APIs
      • Certification API
        • Upload Certification
        • Retrieve all Certifications
        • Retrieve a Certification
      • Certified Entity API
        • Update Certified Entity Name
        • Update Certified Entity Details
  • Data Mapping
    • Getting started
    • How it works
    • How to set up
    • Country list
  • Field Name Glossary
    • Certification Body Template for Accreditation Body
    • Certification Template for Accreditation Body
    • Certification Template for Certification Body
    • Accreditation Body Acronyms
Powered by GitBook
On this page
  • Authorization Header
  • API Keys
  • Example Header
  1. API Access

Authentication

Authorization Header

To authenticate, add an x-http-authorization header to your API request that contains an API Key.

API Keys

IAF CertSearch’s Web API v1 supports the use of API Keys. API Keys allow you to use another method of authentication separate from your account username and password. API Keys add an additional layer of security for your account and can be assigned to limit which areas of your account can be accessed. API Keys can be generated in your account. To use keys, you must set a plain text header named “x-http-authorization” with the contents of the header being “(API Key)” where (API Key) is your API Secret Key.

Example Header

GET https://api.iafcertsearch.com/api/client/v1/resource HTTP/1.1
x-http-authorization: Your.API.Key-HERE
curl -X "GET" "https://api.iafcertsearch.com/api/client/v1/templates" -H "x-http-authorization: Your.API.Key-HERE" -H "Content-Type: application/json"
PreviousGetting startedNextRequests

Last updated 3 years ago