updateApplicationID

put

/ccadmin/v1/applicationIds/{id}

Update Application ID. Updates an Application ID of type application.

Request

Supported Media Types
  • application/json
Path Parameters
id
Type: string
Required: true
The ID of the Application ID to update.
Body Parameter
Root Schema : updateApplicationID_request

Response

Supported Media Types
  • application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : updateApplicationID_response
Nested Schema : createdBy
Type: object
information about the user who created the application.
Example application/json

{
    "creationTime":"2014-05-08 17:15:43.143",
    "createdBy":{
        "lastName":"Admin",
        "firstName":"Amber",
        "repositoryId":"admin",
        "id":"admin"
    },
    "inUse":true,
    "name":"another extension name",
    "repositoryId":"1036cd9a-844d-4c4a-9dc2-22be5a84ced4",
    "id":"1036cd9a-844d-4c4a-9dc2-22be5a84ced4",
    "type":"extension"
}
Default Response
The error response
Body
Root Schema : errorModel
Type: object
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Nested Schema : items
Type: object

Examples

Sample Request:

PUT /ccadmin/v1/applicationIds/1036cd9a-844d-4c4a-9dc2-22be5a84ced4

Sample Response Payload returned by endpoint:

{
  "creationTime": "2014-05-08 17:15:43.143",
  "createdBy": {
    "lastName": "Admin",
    "firstName": "Amber",
    "repositoryId": "admin",
    "id": "admin"
  },
  "inUse": true,
  "name": "another extension name",
  "repositoryId": "1036cd9a-844d-4c4a-9dc2-22be5a84ced4",
  "id": "1036cd9a-844d-4c4a-9dc2-22be5a84ced4",
  "type": "extension"
}