GET applications/{appName}/config/services

Request Information

URI Parameters

NameDescriptionTypeAdditional information
appName

string

Required

Body Parameters

None.

Response Information

Resource Description

AppServices
NameDescriptionTypeAdditional information
services

Collection of Service

None.

Response Formats

application/json, text/json

Sample:
{
  "services": [
    {
      "id": "sample string 1",
      "label": "sample string 2",
      "url": "sample string 3",
      "proxyurl": "sample string 4",
      "displayOrder": 5,
      "svcType": "Unknown Service Type",
      "token": "sample string 6",
      "token_error": {
        "code": 1,
        "message": "sample string 2",
        "details": [
          "sample string 1",
          "sample string 2"
        ],
        "auth_refresh_url": "sample string 3"
      },
      "expires": 7
    },
    {
      "id": "sample string 1",
      "label": "sample string 2",
      "url": "sample string 3",
      "proxyurl": "sample string 4",
      "displayOrder": 5,
      "svcType": "Unknown Service Type",
      "token": "sample string 6",
      "token_error": {
        "code": 1,
        "message": "sample string 2",
        "details": [
          "sample string 1",
          "sample string 2"
        ],
        "auth_refresh_url": "sample string 3"
      },
      "expires": 7
    }
  ]
}

multipart/form-data

Sample:
{"services":[{"id":"sample string 1","label":"sample string 2","url":"sample string 3","proxyurl":"sample string 4","displayOrder":5,"svcType":"Unknown Service Type","token":"sample string 6","token_error":{"code":1,"message":"sample string 2","details":["sample string 1","sample string 2"],"auth_refresh_url":"sample string 3"},"expires":7},{"id":"sample string 1","label":"sample string 2","url":"sample string 3","proxyurl":"sample string 4","displayOrder":5,"svcType":"Unknown Service Type","token":"sample string 6","token_error":{"code":1,"message":"sample string 2","details":["sample string 1","sample string 2"],"auth_refresh_url":"sample string 3"},"expires":7}]}

application/xml, text/xml

Sample:
<AppServices xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IVFS.Models.Data">
  <Services>
    <Service>
      <DisplayOrder>5</DisplayOrder>
      <Expires>7</Expires>
      <Id>sample string 1</Id>
      <Label>sample string 2</Label>
      <ProxyUrl>sample string 4</ProxyUrl>
      <Token>sample string 6</Token>
      <TokenError xmlns:d4p1="http://schemas.datacontract.org/2004/07/IVFS.Models.Security">
        <d4p1:authRefreshUrl>sample string 3</d4p1:authRefreshUrl>
        <d4p1:code>1</d4p1:code>
        <d4p1:details xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:string>sample string 1</d5p1:string>
          <d5p1:string>sample string 2</d5p1:string>
        </d4p1:details>
        <d4p1:message>sample string 2</d4p1:message>
      </TokenError>
      <Url>sample string 3</Url>
    </Service>
    <Service>
      <DisplayOrder>5</DisplayOrder>
      <Expires>7</Expires>
      <Id>sample string 1</Id>
      <Label>sample string 2</Label>
      <ProxyUrl>sample string 4</ProxyUrl>
      <Token>sample string 6</Token>
      <TokenError xmlns:d4p1="http://schemas.datacontract.org/2004/07/IVFS.Models.Security">
        <d4p1:authRefreshUrl>sample string 3</d4p1:authRefreshUrl>
        <d4p1:code>1</d4p1:code>
        <d4p1:details xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:string>sample string 1</d5p1:string>
          <d5p1:string>sample string 2</d5p1:string>
        </d4p1:details>
        <d4p1:message>sample string 2</d4p1:message>
      </TokenError>
      <Url>sample string 3</Url>
    </Service>
  </Services>
</AppServices>