Bridge Training
APIThemes

Create a new theme

POST
/api/themes

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://loading/api/themes" \  -H "Content-Type: application/json" \  -d '{    "type": "system_bidding",    "labels": {      "property1": null,      "property2": null    }  }'
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "type": "system_bidding",
  "userId": "string",
  "labels": {
    "property1": null,
    "property2": null
  },
  "identifier": "string",
  "createdAt": "string",
  "updatedAt": "string"
}