GET Lead/Images/SyncId/{syncId}/Rows/{numRows}/{Compressed}

Get Lead Images in string format

Request Information

URI Parameters

NameDescriptionTypeAdditional information
syncId

integer

Required

numRows

integer

Required

Compressed

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

Collection of LeadImageModel
NameDescriptionTypeAdditional information
Id

integer

None.

SyncId

integer

None.

EnteredDt

date

None.

Condition

string

None.

Status

string

None.

img

Collection of byte

None.

ErrorCode

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "SyncId": 2,
    "EnteredDt": "2024-06-01T00:16:01.1091091-05:00",
    "Condition": "sample string 3",
    "Status": "sample string 4",
    "img": "QEA=",
    "ErrorCode": "sample string 5"
  },
  {
    "Id": 1,
    "SyncId": 2,
    "EnteredDt": "2024-06-01T00:16:01.1091091-05:00",
    "Condition": "sample string 3",
    "Status": "sample string 4",
    "img": "QEA=",
    "ErrorCode": "sample string 5"
  }
]

text/html

Sample:
[{"Id":1,"SyncId":2,"EnteredDt":"2024-06-01T00:16:01.1091091-05:00","Condition":"sample string 3","Status":"sample string 4","img":"QEA=","ErrorCode":"sample string 5"},{"Id":1,"SyncId":2,"EnteredDt":"2024-06-01T00:16:01.1091091-05:00","Condition":"sample string 3","Status":"sample string 4","img":"QEA=","ErrorCode":"sample string 5"}]

application/xml, text/xml

Sample:
<ArrayOfLeadImageModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ImpactServicesEX.Models">
  <LeadImageModel>
    <Condition>sample string 3</Condition>
    <EnteredDt>2024-06-01T00:16:01.1091091-05:00</EnteredDt>
    <ErrorCode>sample string 5</ErrorCode>
    <Id>1</Id>
    <Status>sample string 4</Status>
    <SyncId>2</SyncId>
    <img>QEA=</img>
  </LeadImageModel>
  <LeadImageModel>
    <Condition>sample string 3</Condition>
    <EnteredDt>2024-06-01T00:16:01.1091091-05:00</EnteredDt>
    <ErrorCode>sample string 5</ErrorCode>
    <Id>1</Id>
    <Status>sample string 4</Status>
    <SyncId>2</SyncId>
    <img>QEA=</img>
  </LeadImageModel>
</ArrayOfLeadImageModel>