You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Resource: External System Types ( /api/externalsystemtypes )

This is the collection resource which allows the search and retrieval of external system types.

Root Relation: ExternalSystemTypes

This resource supports the following methods: GET

Methods

GET


Retrieves all (or a subset) of external system types.

This method supports the OData parameters $filter, $top, $take, $orderby and $inlinecount. See OData Topic for more details.

Status Codes

These are the expected status codes returned by the service. In addition, some other status codes may be returned if either an internal error occurs or there is an authentication issue (such as an expired OAuth token).

StatusDescription
200 - OKReturned if the request was completed successfully.

Example - GET

Retrieve all external system types.

Request Headers

KeyValueDescription
Content-typeapplication/json
Acceptapplication/json

Response Headers

KeyValueDescription
Content-Typeapplication/json; charset=utf-8

Response Body

{
  "Skip": 0,
  "Top": 25,
  "Total": 3,
  "Items": [
    {
      "Id": "Jira",
      "Name": "Jira",
      "Categories": [
        "DefectTracker"
      ],
      "Self": "http://localhost/api/externalsystemtype/Jira"
    },
    {
      "Id": "TFS2010",
      "Name": "TFS 2010",
      "Categories": [
        "DefectTracker"
      ],
      "Self": "http://localhost/api/externalsystemtype/TFS2010"
    },
    {
      "Id": "EnterpriseArchitect",
      "Name": "Enterprise Architect",
      "Categories": [
        "CaseModelingTool"
      ],
      "Self": "http://localhost/api/externalsystemtype/EnterpriseArchitect"
    }
  ],
  "Self": "http://localhost/api/api/externalsystemtypes"
}

Status Code

200 - OK

  • No labels