Set up your account
Two steps and then you're ready!
To set up your account and be ready to generate your first label, please follow these first three steps :
Step 1 : Create an 12plus account
Contact the sale team in order to create the account.
If you want to use the staging environment to make some tests, ask for it !
Step 2 : Authentication
You have to request a bearer token to make the api request
Your Bearer token needs to be included in all API requests and allows you to make your first API call.
POST /authenticate
curl --request POST \
--url {baseUrl}/authenticate \
--header 'accept: application/json' \
--header 'content-type: application/json'
--data '
{
"email": "[email protected]",
"password": "password"
}
'
Updated 4 months ago