GET platform/get-by-code?code={code}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
code

string

Required

Body Parameters

None.

Response Information

Resource Description

PlatformsDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

None.

BucketName

string

None.

PlatformLink

string

None.

Code

string

None.

ImageUrl

string

None.

CheckByDeviceToken

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "e18cadc5-bb0c-4412-81c7-87742d7ece3e",
  "Name": "sample string 2",
  "BucketName": "sample string 3",
  "PlatformLink": "sample string 4",
  "Code": "sample string 5",
  "ImageUrl": "sample string 6",
  "CheckByDeviceToken": true
}

text/html

Sample:
{"Id":"e18cadc5-bb0c-4412-81c7-87742d7ece3e","Name":"sample string 2","BucketName":"sample string 3","PlatformLink":"sample string 4","Code":"sample string 5","ImageUrl":"sample string 6","CheckByDeviceToken":true}

application/xml, text/xml

Sample:
<PlatformsDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PlatformAPIs.DAL.Dtos.Platforms">
  <BucketName>sample string 3</BucketName>
  <CheckByDeviceToken>true</CheckByDeviceToken>
  <Code>sample string 5</Code>
  <Id>e18cadc5-bb0c-4412-81c7-87742d7ece3e</Id>
  <ImageUrl>sample string 6</ImageUrl>
  <Name>sample string 2</Name>
  <PlatformLink>sample string 4</PlatformLink>
</PlatformsDto>