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": "8248ad6e-bd7f-4f13-9d68-79558c19d882",
"Name": "sample string 2",
"PlatformLink": "sample string 3",
"Code": "sample string 4",
"ImageUrl": "sample string 5",
"CheckByDeviceToken": true
}
text/html
Sample:
{"Id":"8248ad6e-bd7f-4f13-9d68-79558c19d882","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>8248ad6e-bd7f-4f13-9d68-79558c19d882</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": "c8c92f05-00c6-4955-850c-05d795e53eb3",
"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":"c8c92f05-00c6-4955-850c-05d795e53eb3","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>c8c92f05-00c6-4955-850c-05d795e53eb3</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>