Chat

Vendor Chat Details

For viewing the entire details of a User.

GET/chat-admin/
Header parameters
Response

Success Response

Body
statusinteger
messagestring
Request
const response = await fetch('/chat-admin/', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "message": "Successfully Got User Details"
}

Vendor Chat Details

List of vendors in the eCommerce Portal.

GET/chat-admin/vendor-list
Header parameters
Response

Success Response

Body
statusinteger
messagestring
Request
const response = await fetch('/chat-admin/vendor-list', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "message": "Successfully Got Vendor Details"
}

Vendor Chat List

For viewing the entire Vendor chat details.

GET/chat-admin/vendor/{vendorId}
Path parameters
vendorId*integer
Header parameters
Response

Success Response

Body
statusinteger
messagestring
Request
const response = await fetch('/chat-admin/vendor/{vendorId}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "message": "Successfully Got Vendor Details"
}

Chat History

List of chat history in the eCommerce Portal.

GET/chat-admin/chat-history
Query parameters
Header parameters
Response

Success Response

Body
statusinteger
messagestring
Request
const response = await fetch('/chat-admin/chat-history', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "message": "Successfully Got Chat History..!"
}

Last updated