BrandCheck-PX
  1. PX
BrandCheck-PX
  • BrandCheck
    • PX
      • Create Project
        POST
      • Run Brand Check
        POST
      • Brand Check Result
        GET
    • Altair
      • Sync
    • External Login
      GET
  1. PX

Create Project

Developing
POST
https://brandcheck-nonprod-api-dev.azurewebsites.net/api/v1/px/project
Create project in brandcheck

Request

Authorization
Provide your bearer token in the
Authorization
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"
        }
    ]
}'

Responses

🟢200Success
application/json
Body

Example
{
    "data": {
        "projectId": "1384f676-920a-474f-a2ba-7aab1699f360"
    },
    "statusCode": 200,
    "isSucceded": true,
    "errors": []
}
🔴500Server Error
🟠404Record Not Found
🟠400Validation Failed Response
Modified at 2024-08-08 07:56:13
Next
Run Brand Check
Built with