GET api/Images

Retrieve the available item's image

Request Information

URI Parameters

None.

Body Parameters

ImageReq
NameDescriptionTypeAdditional information
Company

The company name

string

Required

ItemCode

The item code

string

Required

Request Formats

application/json, text/json

Sample:
{
  "Company": "DEMO",
  "ItemCode": "123456"
}

Response Information

Resource Description

ImageRes
NameDescriptionTypeAdditional information
MsgControl

Contains information about the response

MsgControl

None.

image

Image decoded in base64 encode format

string

None.

Response Formats

application/json, text/json

Sample:
{
  "MsgControl": {
    "result": 0,
    "Message": "Corresponding success and error message",
    "MethodName": "api/Images GET",
    "AppName": "EsoftWebApi",
    "EsoftUser": "ESOFT",
    "User": "Username",
    "Password": "Password",
    "SystemDate": "2025-01-06T22:32:15.2189577+02:00",
    "GenList": [],
    "GenMsg1": "",
    "GenMsg2": "",
    "GenMsg3": ""
  },
  "image": ""
}