Verification Users
  • API Integration
    • Getting Started
    • Authentication
    • Requests
    • Responses
    • Errors
    • Verification APIs
      • Retrieve Company & Certificates
      • Bulk Retrieve Companies & Certificates
      • Match Companies
      • Retrieve Company & Certificates by IAF ID
      • Bulk Retrieve Company & Certificates by IAF ID
      • Retrieve Certificate by IAF ID
Powered by GitBook
On this page
  • Authorization Header
  • API Keys
  • Example Header
Export as PDF
  1. API Integration

Authentication

PreviousGetting StartedNextRequests

Last updated 6 months ago

Authorization Header

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

API Keys

IAF CertSearch’s Verification Users API 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 {API_URL}/sample-endpoint HTTP/1.1
x-http-authorization: Your.API.Key-HERE
curl -X "GET" "{API_URL}/sample-endpoint" -H "x-http-authorization: Your.API.Key-HERE" -H "Content-Type: application/json"

For more information about the API URL, see the page.

requests