cURL
curl --request PATCH \ --url https://api.ngrok.com/bot_users/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --header 'ngrok-version: <ngrok-version>' \ --data ' { "id": "<string>", "name": "<string>", "active": true } '
{ "id": "<string>", "uri": "<string>", "name": "<string>", "active": true, "created_at": "<string>" }
Update an existing bot user’s configuration. Note: Bot Users are deprecated in favor of Service Users.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
n/a
human-readable name used to identify the bot
whether or not the bot is active
Update attributes of a bot user by ID.
unique API key resource identifier
URI to the API resource of this bot user
timestamp when the api key was created, RFC 3339 format
Was this page helpful?