Update a Service Account

put

/apiplatform/management/v1/serviceaccounts/{saId}

Updates the {saId} service account.

Users requesting this resource must be assigned the Service Manager role and must be issued the Manage Service Account grant for the specified service account.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : UpdateServiceAccountRequest
Match All
Show Source
Nested Schema : ServiceAccountDef
Type: object
Show Source
Nested Schema : configuration
Type: object
The service account's configuration.
Show Source
Nested Schema : grant
Type: object
The OAuth grant
Show Source
Back to Top

Response

Supported Media Types

200 Response

The service account was updated.

400 Response

Bad request, indicates a problem with the input parameters.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source

403 Response

Forbidden.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source

500 Response

Unexpected error.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source
Back to Top

Examples

The following example shows how to update the {saId} service account by submitting a PUT request on the REST resource using cURL. For more information about cURL, see Use cURL

curl -i -X PUT 
-H "Authorization: Bearer access_token"
-H "Content-Type:application/json"
-d @serviceaccupdate-put.json
https://example.com/apiplatform/management/v1/serviceaccounts/{saId}

where {saId} is the unique Id of the service account. To retrieve the available service accounts, see Get Service Accounts

Example of Request Body

The following shows an example of the request body, included with the request above in a file named serviceaccupdate-put. The attributes you supply will replace the attributes in the service account definition, except for the name attribute.

{
    "name": "basic",
    "description": "canned service account",
    "type": "Basic",
    "configuration": {
        "username": "apicsadmin"
            }
}

Example of Response Headers

The following shows an example of the response headers.

HTTP/1.1 204 No Content
Server: Oracle-Traffic-Director/12.2.1.0.0
Date:  Sun, 22 Oct 2017 08:34:10 GMT
X-oracle-dms-ecid:  49d14691-2176-4c99-aed3-38438604f528-00001e4e
X-oracle-dms-rid: 0:1
Via: 1.1 otd_opc
Proxy-agent: Oracle-Traffic-Director/12.2.1.0.0
Back to Top