POST Platforms/get-by-PlatformUrl
Request Information
URI Parameters
None.
Body Parameters
PlatformsDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| PlatformLink | string |
None. |
|
| Code | string |
None. |
|
| ImageUrl | string |
None. |
|
| CheckByDeviceToken | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "1d245d11-a907-483c-9048-7ba17e4739bf",
"Name": "sample string 2",
"PlatformLink": "sample string 3",
"Code": "sample string 4",
"ImageUrl": "sample string 5",
"CheckByDeviceToken": true
}
text/html
Sample:
{"Id":"1d245d11-a907-483c-9048-7ba17e4739bf","Name":"sample string 2","PlatformLink":"sample string 3","Code":"sample string 4","ImageUrl":"sample string 5","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"> <CheckByDeviceToken>true</CheckByDeviceToken> <Code>sample string 4</Code> <Id>1d245d11-a907-483c-9048-7ba17e4739bf</Id> <ImageUrl>sample string 5</ImageUrl> <Name>sample string 2</Name> <PlatformLink>sample string 3</PlatformLink> </PlatformsDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponseDTOOfPlatformsDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Code | integer |
None. |
|
| Message | string |
None. |
|
| Data | PlatformsDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Code": 2,
"Message": "sample string 3",
"Data": {
"Id": "48849cd4-159d-4ee3-9166-197dc0c85a5f",
"Name": "sample string 2",
"PlatformLink": "sample string 3",
"Code": "sample string 4",
"ImageUrl": "sample string 5",
"CheckByDeviceToken": true
}
}
text/html
Sample:
{"Status":true,"Code":2,"Message":"sample string 3","Data":{"Id":"48849cd4-159d-4ee3-9166-197dc0c85a5f","Name":"sample string 2","PlatformLink":"sample string 3","Code":"sample string 4","ImageUrl":"sample string 5","CheckByDeviceToken":true}}
application/xml, text/xml
Sample:
<APIResponseDTOOfPlatformsDto7pYwKDKu xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAL.Dtos">
<Code>2</Code>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/PlatformAPIs.DAL.Dtos.Platforms">
<d2p1:CheckByDeviceToken>true</d2p1:CheckByDeviceToken>
<d2p1:Code>sample string 4</d2p1:Code>
<d2p1:Id>48849cd4-159d-4ee3-9166-197dc0c85a5f</d2p1:Id>
<d2p1:ImageUrl>sample string 5</d2p1:ImageUrl>
<d2p1:Name>sample string 2</d2p1:Name>
<d2p1:PlatformLink>sample string 3</d2p1:PlatformLink>
</Data>
<Message>sample string 3</Message>
<Status>true</Status>
</APIResponseDTOOfPlatformsDto7pYwKDKu>