header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
Example
{"brandId":"Enter Altair brand id used in px","referenceId":"Enter px portal project id","name":"PX project name","additionalData":[{"brandName":"PX brand name","createdBy":"Email of logged-in user"}]}
Request Code Samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request POST 'https://brandcheck-nonprod-api-dev.azurewebsites.net/api/v1/px/project' \
--header'Authorization: Bearer <token>' \
--header'Content-Type: application/json' \
--data-raw'{
"brandId": "Enter Altair brand id used in px",
"referenceId": "Enter px portal project id",
"name": "PX project name",
"additionalData": [
{
"brandName": "PX brand name",
"createdBy":"Email of logged-in user"
}
]
}'