Tenant/Platforms

Update platform categories

Updates the categories attached to a platform by platform ID.

POST
/api/v2/platforms/categories

Authorization

BearerAuthObject
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/v2/platforms/categories" \  -H "Content-Type: application/json" \  -d '{    "platformId": 76,    "categoryIds": [      1,      2,      3    ]  }'
{  "message": "Ok"}
Empty
Empty
Empty