POST Platforms/Create

Request Information

URI Parameters

None.

Body Parameters

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.

Request Formats

application/json, text/json

Sample:
{
  "Id": "6c02402d-56b9-4931-9051-4283a21e8c5d",
  "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":"6c02402d-56b9-4931-9051-4283a21e8c5d","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>6c02402d-56b9-4931-9051-4283a21e8c5d</Id>
  <ImageUrl>sample string 6</ImageUrl>
  <Name>sample string 2</Name>
  <PlatformLink>sample string 4</PlatformLink>
</PlatformsDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json, text/html

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>