Authentication
BIK uses API key and secret to allow access to the API. You can register a new BIK Developer API key and secret at our developer portal.
BIK expects for the API key and secret to be included in all API requests to the server as auth that looks like the following (Note: auth type should be basic auth
):
Username: KEY
Password: SECRET
You must replace KEY
with your personal API key and SECRET
with your personal API secret
Request parameters
Name | Type | Required/Optional | Description |
---|---|---|---|
appId | string | Required | Application id of the store |
Request Information
Category | Value |
---|---|
Http request | POST |
URL | https://bikapi.bikayi.app/integrations/bikPlatformFunctions-authPartnerViaKey |
Sample request
curl --location 'https://bikapi.bikayi.app/integrations/bikPlatformFunctions-authPartnerViaKey' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic AUTH_TOKEN' \
--data '{
"appId": "APP_ID"
}'
JSON response example:
{
"status": "200"
}
Response parameters
Name | Type | Description |
---|---|---|
status | number | API status |