API security
API access is protected by two layers:
IP source filtering (optional)
Authentication (mandatory)
IP source filtering
API access can be filtered out to allow only requests sent from specified IP addresses. This adds a security layer for accessing the API. To restrict the public IPs allowed to access the search API, you must send them to your Service Account Manager.
Authentication
The search API will ignore any request that is not successfully authenticated. The requests must include standard platform authentication headers as detailed below. The client sends the request including an Authorization header with the credentials encoded in Base64:
Authorization: Basic <Base64-encoded credentials>Example: for username:password, the header would look like:
Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=The search API will process the request, and if the credentials are not valid, the request will not be processed.
Last updated