GET api/ImageCompression?t={t}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
t

integer

Required

Body Parameters

None.

Response Information

Resource Description

ObjResponse
NameDescriptionTypeAdditional information
Message

string

None.

Success

boolean

None.

Data

Collection of byte

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "Success": true,
  "Data": "QEA="
}

application/octet-stream

Sample:
{"Message":"sample string 1","Success":true,"Data":"QEA="}

application/xml, text/xml

Sample:
<ObjResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Essence360PDF.Models">
  <Data>QEA=</Data>
  <Message>sample string 1</Message>
  <Success>true</Success>
</ObjResponse>