POST api/WhiteLabel/Delete
Request Information
URI Parameters
None.
Body Parameters
WhiteLabel| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientDomain | string |
None. |
|
| PrevClientDomain | string |
None. |
|
| PartnerID | globally unique identifier |
None. |
|
| ClientID | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| LogoUrl | Attachment |
None. |
|
| FaviconUrl | Attachment |
None. |
|
| BannerUrl | Attachment |
None. |
|
| BannerTitle | string |
None. |
|
| BannerDescription | string |
None. |
|
| AndroidAppUrl | string |
None. |
|
| IosAppUrl | string |
None. |
|
| WhiteLabelUrl | string |
None. |
|
| ThemeClass | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ClientDomain": "sample string 1",
"PrevClientDomain": "sample string 2",
"PartnerID": "0860ab36-651b-4c0f-b050-5940181d3957",
"ClientID": "cd0fb1fc-9372-4d91-a2f3-d77ee288fa63",
"Name": "sample string 5",
"LogoUrl": {
"AttachmentID": "454c1426-6a48-4691-bf01-3d369f69f9a3",
"AttachmentData": "QEA=",
"ContentType": "sample string 1",
"FileName": "sample string 2",
"AttachmentDataBase64": "sample string 3",
"ImageString": "sample string 4",
"IsDeleted": true
},
"FaviconUrl": {
"AttachmentID": "454c1426-6a48-4691-bf01-3d369f69f9a3",
"AttachmentData": "QEA=",
"ContentType": "sample string 1",
"FileName": "sample string 2",
"AttachmentDataBase64": "sample string 3",
"ImageString": "sample string 4",
"IsDeleted": true
},
"BannerUrl": {
"AttachmentID": "454c1426-6a48-4691-bf01-3d369f69f9a3",
"AttachmentData": "QEA=",
"ContentType": "sample string 1",
"FileName": "sample string 2",
"AttachmentDataBase64": "sample string 3",
"ImageString": "sample string 4",
"IsDeleted": true
},
"BannerTitle": "sample string 6",
"BannerDescription": "sample string 7",
"AndroidAppUrl": "sample string 8",
"IosAppUrl": "sample string 9",
"WhiteLabelUrl": "sample string 10",
"ThemeClass": "sample string 11"
}
application/xml, text/xml
Sample:
<WhiteLabel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FleetrootPartner.Entity">
<AndroidAppUrl>sample string 8</AndroidAppUrl>
<BannerDescription>sample string 7</BannerDescription>
<BannerTitle>sample string 6</BannerTitle>
<BannerUrl>
<AttachmentData>QEA=</AttachmentData>
<AttachmentDataBase64>sample string 3</AttachmentDataBase64>
<AttachmentID>454c1426-6a48-4691-bf01-3d369f69f9a3</AttachmentID>
<ContentType>sample string 1</ContentType>
<FileName>sample string 2</FileName>
<ImageString>sample string 4</ImageString>
<IsDeleted>true</IsDeleted>
</BannerUrl>
<ClientDomain>sample string 1</ClientDomain>
<ClientID>cd0fb1fc-9372-4d91-a2f3-d77ee288fa63</ClientID>
<FaviconUrl>
<AttachmentData>QEA=</AttachmentData>
<AttachmentDataBase64>sample string 3</AttachmentDataBase64>
<AttachmentID>454c1426-6a48-4691-bf01-3d369f69f9a3</AttachmentID>
<ContentType>sample string 1</ContentType>
<FileName>sample string 2</FileName>
<ImageString>sample string 4</ImageString>
<IsDeleted>true</IsDeleted>
</FaviconUrl>
<IosAppUrl>sample string 9</IosAppUrl>
<LogoUrl>
<AttachmentData>QEA=</AttachmentData>
<AttachmentDataBase64>sample string 3</AttachmentDataBase64>
<AttachmentID>454c1426-6a48-4691-bf01-3d369f69f9a3</AttachmentID>
<ContentType>sample string 1</ContentType>
<FileName>sample string 2</FileName>
<ImageString>sample string 4</ImageString>
<IsDeleted>true</IsDeleted>
</LogoUrl>
<Name>sample string 5</Name>
<PartnerID>0860ab36-651b-4c0f-b050-5940181d3957</PartnerID>
<PrevClientDomain>sample string 2</PrevClientDomain>
<ThemeClass>sample string 11</ThemeClass>
<WhiteLabelUrl>sample string 10</WhiteLabelUrl>
</WhiteLabel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| IsValid | boolean |
None. |
|
| Message | Collection of string |
None. |
|
| WarningMessage | string |
None. |
|
| Id | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsValid": true,
"Message": [
"sample string 1",
"sample string 2"
],
"WarningMessage": "sample string 2",
"Id": "56c45ded-b1ce-4550-bbed-928243c1d732"
}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FleetrootPartner.Common">
<Id>56c45ded-b1ce-4550-bbed-928243c1d732</Id>
<IsValid>true</IsValid>
<Message xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Message>
<WarningMessage>sample string 2</WarningMessage>
</Result>