π Authentication
π How to Obtain Credentials?β
To access development or production credentials, send an email to suporte@serrabits.com.br. Identify yourself as an integrator and specify the shop you are integrating with Cortecloud.
You will receive the following information:
- Password
- Client API key / Partner API key β referred in this documentation as API key
π Using the Credentialsβ
To access the API you will need to use all the information received:
-
Email and password: used for
Basic Auth
in the request.- Concatenate email and password with ":" (e.g.,
email@example.com:password123
). - Base64-encode this string.
- Add to the header as:
Authorization: Basic <base64_string>
.
- Concatenate email and password with ":" (e.g.,
-
API key: used for the
x-dreamfactory-api-key
header.Add the header
x-dreamfactory-api-key
with your API key value.