Cyan Web API - Version 1


GET api/applications/{applicationId}

            Gets a single Application.
            

Request Information

Parameters

NameDescriptionAdditional information
applicationId

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "applicationId": "ed21a4b8-fa14-4d8a-9d0a-d18af67c1dd3",
  "lookupKey": "sample string 2",
  "name": "sample string 3",
  "description": "sample string 4",
  "createdDateUtc": "2024-08-30T01:11:22.5865819+00:00",
  "updatedDateUtc": "2024-08-30T01:11:22.5865819+00:00"
}

application/xml, text/xml

Sample:
<ApplicationRepresentation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlueDot.Cyan.Server.Core.Models.Rest.Version1">
  <CreatedDateUtc>2024-08-30T01:11:22.5865819+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2024-08-30T01:11:22.5865819+00:00</UpdatedDateUtc>
  <ApplicationId>ed21a4b8-fa14-4d8a-9d0a-d18af67c1dd3</ApplicationId>
  <Description>sample string 4</Description>
  <LookupKey>sample string 2</LookupKey>
  <Name>sample string 3</Name>
</ApplicationRepresentation>