POST
/
api
/
external
/
platform-users
curl --request POST \
  --url https://backend.nebuly.com/api/external/platform-users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "users": [
    {
      "end_user": "<string>",
      "tags": {},
      "active_from": "<string>",
      "active_to": "<string>"
    }
  ]
}'
{
  "users": [
    {}
  ]
}

This endpoint allows you to update existing platform users. A match is made using the end_user field, and any metadata (such as tags, active_from, or active_to) is replaced accordingly.

You need an API key to authenticate. See here for more information about the API keys.

For users of the european region, the correct endpoint is https://backend.eu.nebuly.com/api/external/platform-users.

users
PlatformUser[]
required

A list of user objects to update.

users
PlatformUser[]

The list of users that were successfully updated.