Contact
Retrieves the list of all supplier contacts with optional pagination.
Number of results to return per page.
Number of results to skip (for pagination).
Flag to determine if the count of contacts should be included.
Bearer token for vendor authentication
Successfully retrieved the supplier contact list.
Bad Request - Invalid input parameters
Internal Server Error
GET /backend/api/supplier/contacts/list HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully Get All supplier Contact List</message>
</object>
Creates a contact for a specific supplier.
Bearer token for vendor authentication
The name of the contact.
The ID of the supplier the contact belongs to.
The position of the contact in the supplier organization.
The status of the contact (active/inactive).
The email address of the contact.
The mobile number of the contact.
Successfully created the supplier contact.
Bad Request
Internal Server Error
POST /backend/api/supplier/create-contact HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 90
"name='text'&supplierId=1&position='text'&status=1&email='text'&mobile='text'"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully Supplier Contact Created.</message>
</object>
Fetches details of a specific supplier contact based on the provided contact ID.
The ID of the supplier contact to retrieve.
Bearer token for vendor authentication
Successfully retrieved the supplier contact.
Bad Request
Contact not found
Internal Server Error
GET /backend/api/supplier/contact/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully Get supplier Contact</message>
</object>
Updates the details of a specific supplier contact based on the contact ID.
The ID of the supplier contact to update.
Bearer token for vendor authentication
The ID of the supplier contact
56
The name of the contact
test
The ID of the associated supplier
32
The position of the contact
3
The status of the contact (active or inactive)
0
The mobile number of the contact
5345463636
Successfully updated the supplier contact.
Bad Request
Contact not found
Internal Server Error
PUT /backend/api/supplier/contact/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 112
"id=56&name='test'&supplierId=32&position='3'&status=0&email='[email protected]'&mobile='5345463636'"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Supplier Contacts Updated Successfully.</message>
</object>
Deletes the details of a specific supplier contact based on the contact ID.
The ID of the supplier contact to delete.
Bearer token for vendor authentication
Successfully deleted the supplier contact.
Contact not found
Internal Server Error
DELETE /backend/api/supplier/contact/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Supplier Contact Deleted successfully.</message>
</object>
Last updated