GET api/Signing/SigningRooms/Branding/{signingRoomBrandingId}/Logo
Gets the SigningRoom logo image for the specified SigningRoom branding.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| signingRoomBrandingId |
The SigningRoom branding id. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The SigningRoom logo image.
ESignSystems.SmartSAFE.Models.Signing.ImageModel| Name | Description | Type | Additional information |
|---|---|---|---|
| MimeType |
Gets or sets the image's mime type. |
string |
None. |
| ImageData |
Gets or sets a byte array representing the image. |
Collection of byte |
None. |
| UpdatedBy |
Gets or sets the name of the user that updated the model. |
string |
None. |
| UpdatedDate |
Gets or sets the date an time that the model was updated. |
date |
None. |
Response Formats
application/json, text/json
Sample:
{
"MimeType": "sample string 1",
"ImageData": "QEA=",
"UpdatedBy": "sample string 2",
"UpdatedDate": "2026-01-01T17:34:26.092535-05:00"
}
application/xml, text/xml
Sample:
<ImageModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Signing"> <UpdatedBy xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">sample string 2</UpdatedBy> <UpdatedDate xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">2026-01-01T17:34:26.092535-05:00</UpdatedDate> <ImageData>QEA=</ImageData> <MimeType>sample string 1</MimeType> </ImageModel>