Skip to main content
POST
/
platform
/
admin
/
assets
/
enabled
cURL
curl --request POST \
  --url https://api.example.com/platform/admin/assets/enabled \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Query Parameters

api-version
string | null

Body

application/json

Represents a request payload used to toggle availability for multiple assets.

availabilityCollection
object[]

Collection of asset identifiers paired with their desired availability state.

Example:
[{ "Key": 42, "Value": true }]

Response

Wrapper for API operation results containing success status, error information, and return value.

isSuccess
boolean

True if the operation completed successfully, false otherwise.

Example:

true

isFailure
boolean

True if the operation failed, false otherwise.

Example:

false

error
object

Error information returned when the operation fails.

Example:
{
"code": "ValidationError",
"message": "The request parameters failed validation.",
"info": [
"The Name field is required.",
"The Id field must be greater than 0."
]
}
value
object[] | null

The result value returned when the operation is successful.