Skip to main content

Create platform preferences

Create new platform preferences. The platform preferences name must be unique within the platform and can contain only alphanumeric characters, dashes and underscores.

Request Body required
    preferences object[]
  • Array [
  • name string
    value string
  • ]
Responses

A successful response.


Schema
    preference object[]
  • Array [
  • id string
    name string
    value string
    resourceId string
    resourceType string
    createdAt date-time

    The time when the preference was created.

    updatedAt date-time

    The time when the preference was updated.

  • ]
POST /v1beta1/preferences

Authorization

name: Basic type: httpdescription: use Client ID as username and Client Secret as passwordin: headerscheme: basic

Request

Base URL
http://127.0.0.1:7400
Security Scheme
Username
Password
Body required
{
"preferences": [
{
"name": "string",
"value": "string"
}
]
}
curl / cURL
curl -L -X POST 'http://127.0.0.1:7400/v1beta1/preferences' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"preferences": [
{
"name": "string",
"value": "string"
}
]
}'