Update Service Account

Update Service Account

Updates the service account

Request
URI
PUT
https://{api_host}/api/v2/account/serviceaccount/{id}
COPY
Path Parameters
string
id
Required

id


Request Body
ServiceAccountWrite of type(s) application/json
Optional

Show optional properties

{
    "identifier": "string"
}
{
    "identifier": "string",
    "active": false,
    "description": "string",
    "tokens": [
        "string"
    ],
    "userGroups": [
        "string"
    ],
    "groups": [
        "string"
    ],
    "roles": [
        "string"
    ]
}
Authentication
This operation uses the following authentication methods.
Responses
200

successful operation

Returns ResponseContainerServiceAccount of type(s) application/json
"ResponseContainerServiceAccount Object"
object
status
Required

status

object
response
Optional

Wavefront service account entity.


Code Samples
COPY
                    curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"identifier:"string"}' https://{api_host}/api/v2/account/serviceaccount/{id}