Cyan Web API - Version 1


GET api/dataTypes/{dataTypeId}

            Gets a DataType by DataTypeId.
            

Request Information

Parameters

NameDescriptionAdditional information
dataTypeId

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "dataTypeId": "86dbc0a3-5758-482f-92f2-b5960e25b16c",
  "lookupKey": "sample string 2",
  "name": "sample string 3",
  "description": "sample string 4",
  "cSharpDataType": "sample string 5",
  "javaScriptDataType": "sample string 6",
  "javaDataType": "sample string 7",
  "objectiveCDataType": "sample string 8",
  "createdDateUtc": "2025-04-21T00:58:04.6868364+00:00",
  "updatedDateUtc": "2025-04-21T00:58:04.6868364+00:00"
}

application/xml, text/xml

Sample:
<DataTypeRepresentation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlueDot.Cyan.Server.Core.Models.Rest.Version1">
  <CreatedDateUtc>2025-04-21T00:58:04.6868364+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2025-04-21T00:58:04.6868364+00:00</UpdatedDateUtc>
  <CSharpDataType>sample string 5</CSharpDataType>
  <DataTypeId>86dbc0a3-5758-482f-92f2-b5960e25b16c</DataTypeId>
  <Description>sample string 4</Description>
  <JavaDataType>sample string 7</JavaDataType>
  <JavaScriptDataType>sample string 6</JavaScriptDataType>
  <LookupKey>sample string 2</LookupKey>
  <Name>sample string 3</Name>
  <ObjectiveCDataType>sample string 8</ObjectiveCDataType>
</DataTypeRepresentation>