Skip to main content

Add platform user

Adds a user to the platform.

Request Body required
    user_id string

    The user id to add to the platform.

    serviceuser_id string

    The service user id to add to the platform.

    relation string required

    The relation to add as in the platform. It can be admin or member.

Responses

A successful response.


Schema

    object

POST /v1beta1/admin/platform/users

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
{
"user_id": "string",
"serviceuser_id": "string",
"relation": "string"
}
curl / cURL
curl -L -X POST 'http://127.0.0.1:7400/v1beta1/admin/platform/users' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"user_id": "string",
"serviceuser_id": "string",
"relation": "string"
}'