getApplicationIDs

get

/ccadmin/v1/applicationIds

Get Application IDs. Returns Application IDs of the specified type or all IDs if type is not specified.

Request

Supported Media Types
  • application/json
Query Parameters
type
Type: string
Required: true
The type of Application to retrieve.

Response

Supported Media Types
  • application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : getApplicationIDs_response
Nested Schema : items
Type: array
the list of Application IDs.
Nested Schema : items
Type: object
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"
    },
    {
        "creationTime":"2014-05-08 17:15:26.328",
        "createdBy":{
            "lastName":"Admin",
            "firstName":"Amber",
            "repositoryId":"admin",
            "id":"admin"
        },
        "name":"new extension name",
        "repositoryId":"d5be81d5-79fb-44af-8281-b5afa81d8fef",
        "id":"d5be81d5-79fb-44af-8281-b5afa81d8fef",
        "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 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"
  },
  {
    "creationTime": "2014-05-08 17:15:26.328",
    "createdBy": {
      "lastName": "Admin",
      "firstName": "Amber",
      "repositoryId": "admin",
      "id": "admin"
    },
    "name": "new extension name",
    "repositoryId": "d5be81d5-79fb-44af-8281-b5afa81d8fef",
    "id": "d5be81d5-79fb-44af-8281-b5afa81d8fef",
    "type": "extension"
  }
]