Update Service And ERAs

put

/bcws/webresources/v1.0/services/serviceAndEras

Updates a service login and its associated service ERAs.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/xml ()
Root Schema : schema
Type: object
Show Source
Nested Schema : profiles
Type: array
Show Source
Nested Schema : Discriminator: @class
Type: object
Show Source
Nested Schema : Discriminator: @class
Type: object
Show Source
Nested Schema : ResourceRef
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : aliasList
Type: array
The list of aliases associated with the service.
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : AliasList
Type: object
The list of aliases associated with the service.
Show Source
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : profiles
Type: array
Show Source
Nested Schema : Discriminator: @class
Type: object
Show Source
Nested Schema : Discriminator: @class
Type: object
Show Source
Nested Schema : ResourceRef
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : aliasList
Type: array
The list of aliases associated with the service.
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : AliasList
Type: object
The list of aliases associated with the service.
Show Source
Back to Top

Response

200 Response

The service and ERAs were updated successfully.

500 Response

An internal service error occurred.
Back to Top

Examples

This example shows how to update a specified service's login and ERAs by submitting a PUT request on the REST resource using cURL. For more information about cURL, see "Use cURL".

cURL Command

curl -X PUT http://hostname:port/bcws/webresources/version/services/serviceAndEras -H 'content-type: application/json' -d @file.json

where:

  • hostname is the URL for the Billing Care REST server.
  • port is the port for the Billing Care REST server.
  • version is the version of the API you're using, such as v1.0.
  • file.json is the JSON file that specifies the service to update.

Example of Request Body

This example shows the contents of the file.json file sent as the request body.

{
   "service": {
      "@class": "com.oracle.communications.brm.cc.model.ServiceBase",
      "accountRef": {
         "id": "0.0.0.1+-account+1607269" 
      },
      "id": {
         "id": "0.0.0.1+-service-ip+1610885"
      },
      "login": "login"
   },
   "profiles": []
}

Example of Response Body

If successful, the response code 200 is returned with true in the response body.

Back to Top