GET
api/v1/get-brand-requestbyId?brandRequestId={brandRequestId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
brandRequestId | integer |
Required |
Response Information
Description:
Return type: BrandRequestDetails
Response Formats
application/json, text/json
{ "BrandRequestId": 1, "BrandName": "sample string 2", "ShortDescription": "sample string 3", "LogoPath": "sample string 4", "IsActive": true, "IsLogicalDeleted": true, "CreatedBy": 7, "ApprovedBy": 8, "ModifiedBy": 9, "SentForApproval": 10, "RejectReason": "sample string 11", "ClientId": 12, "SellerId": 13 }
text/html
{"BrandRequestId":1,"BrandName":"sample string 2","ShortDescription":"sample string 3","LogoPath":"sample string 4","IsActive":true,"IsLogicalDeleted":true,"CreatedBy":7,"ApprovedBy":8,"ModifiedBy":9,"SentForApproval":10,"RejectReason":"sample string 11","ClientId":12,"SellerId":13}
application/xml, text/xml
<BrandRequestDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.RequestOperations.Brand"> <ApprovedBy>8</ApprovedBy> <BrandName>sample string 2</BrandName> <BrandRequestId>1</BrandRequestId> <ClientId>12</ClientId> <CreatedBy>7</CreatedBy> <IsActive>true</IsActive> <IsLogicalDeleted>true</IsLogicalDeleted> <LogoPath>sample string 4</LogoPath> <ModifiedBy>9</ModifiedBy> <RejectReason>sample string 11</RejectReason> <SellerId>13</SellerId> <SentForApproval>10</SentForApproval> <ShortDescription>sample string 3</ShortDescription> </BrandRequestDetails>