Procurement API
API Documentation

This is a self-navigating API documentation. Please feel free to explore across the Index. API calls gives you a hands-on experience of those methods provided. Field reference lists, describes the type of information provided by the API.

API Methods

Procurement API
API Documentation

This is a self-navigating API documentation. Please feel free to explore across the Index. API calls gives you a hands-on experience of those methods provided. Field reference lists, describes the type of information provided by the API.

API Methods

Authentication API

This is a self-navigating API documentation. Please feel free to explore across the Index. API calls gives you a hands-on experience of those methods provided. Field reference lists, describes the type of information provided by the API.

Registration

POST

http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/users

Usage and Examples

curl --location --request POST 'http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/users' \ --header 'Content-Type: application/json' \ --header 'X-SITE-ID: AS0049' \ --header 'X-R-DOMAIN: reviquippo.auctionsoftware.com:7086' \ --header 'Content-Type: application/json' \ --data-raw '{ "user": { "role_id": "1", "first_name": "buyer", "last_name": "last_name", "company_name": "buyer", "email": "seller+1@yopmail.com", "password": "123456789", "password_confirmation": "123456789" }, "_comments": "role: 1 Buyer, 2 Seller, 3 Admin" }'

var settings = { "url": "http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/users", "method": "POST", "timeout": 0, "headers": { "Content-Type": ["application/json", "application/json"], "X-SITE-ID": "AS0049", "X-R-DOMAIN": "reviquippo.auctionsoftware.com:7086" }, "data": JSON.stringify({"user":{"role_id":"1","first_name":"buyer","last_name":"last_name","company_name":"buyer","email":"seller+1@yopmail.com","password":"123456789","password_confirmation":"123456789"},"_comments":"role: 1 Buyer, 2 Seller, 3 Admin"}), }; $.ajax(settings).done(function (response) { console.log(response); });

var https = require('follow-redirects').https; var fs = require('fs'); var options = { 'method': 'POST', 'hostname': 'http://procurementapi.auctionsoftware.com/', 'path': '/reverseproduct/api/v1/users?', 'headers': { 'Content-Type': ['application/json', 'application/json'], 'X-SITE-ID': 'AS0049', 'X-R-DOMAIN': 'reviquippo.auctionsoftware.com:7086' }, 'maxRedirects': 20 }; var req = https.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); var postData = JSON.stringify({"user":{"role_id":"1","first_name":"buyer","last_name":"last_name","company_name":"buyer","email":"seller+1@yopmail.com","password":"123456789","password_confirmation":"123456789"},"_comments":"role: 1 Buyer, 2 Seller, 3 Admin"}); req.write(postData); req.end();

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type: "application/json", X-SITE-ID: "X_SITE_ID", X-R-DOMAIN: "X_R_DOMAIN"
    }
userdetails
  • {
    • "user": { "role_id": "2", "first_name": "Seller", "last_name": "last_name", "company_name": "first_seller_company", "email": "sellertest2@yopmail.com", "password": "123456789", "password_confirmation": "123456789" }, "_comments": "role: 1 Buyer, 2 Seller, 3 Admin"
    }
Responses
Status: 202 - Success
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "success": true, "confirmation_token": "KvLMKGTMGESbskUBq18A94meeJmFOjLDPgoaCC_1744"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "success": false, "errors": "Mysql2::Error: Duplicate entry 'seller+1@yopmail.com-AS0049' for key 'index_users_on_email_and_site_id'"
    }

Signin

POST

http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/authenticate

Usage and Examples

curl --location --request POST 'http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/authenticate' \ --header 'Content-Type: application/json' \ --header 'X-SITE-ID: AS0048 ' \ --header 'X-R-DOMAIN: reviquippo.auctionsoftware.com:7086' \ --header 'Content-Type: application/json' \ --data-raw '{ "user": { "email": "sellertest1@yopmail.com", "password": "123456789" } }'

var settings = { "url": "http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/authenticate", "method": "POST", "timeout": 0, "headers": { "Content-Type": ["application/json", "application/json"], "X-SITE-ID": "AS0048 ", "X-R-DOMAIN": "reviquippo.auctionsoftware.com:7086" }, "data": JSON.stringify({"user":{"email":"sellertest1@yopmail.com","password":"123456789"}}), }; $.ajax(settings).done(function (response) { console.log(response); });

var http = require('follow-redirects').http; var fs = require('fs'); var options = { 'method': 'POST', 'hostname': 'iquipporev.moblearn.net', 'path': '/reverseproduct/api/v1/authenticate', 'headers': { 'Content-Type': ['application/json', 'application/json'], 'X-SITE-ID': 'AS0048 ', 'X-R-DOMAIN': 'reviquippo.auctionsoftware.com:7086' }, 'maxRedirects': 20 }; var req = http.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); var postData = JSON.stringify({"user":{"email":"sellertest1@yopmail.com","password":"123456789"}}); req.write(postData); req.end();

Header & Body Parameters
Name Description
Header
  • {
    • [{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-SITE-ID","value":"AS0048 ","type":"text"},{"key":"X-R-DOMAIN","value":"reviquippo.auctionsoftware.com:7086","type":"text"}]
    }
userdetails
  • {
    • "email": "sellertest1@yopmail.com", "password": "123456789"
    }
Responses
Status: 202 - Success
  • {
    • "email": "string", "password": "string"
    }
  • {
    • "success": { "auth_token": "eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjo3NywiZXhwIjoxNTg4ODQzNTM4fQ.BnW31bdgX1GSEJ2lXxLZ0mk5Ez7q16uN2DmhXEUO3-Q", "user": { "email": "sellertest1@yopmail.com", "is_buyer": false, "is_seller": true, "user_detail": { "sign_in_count": 3, "id": 77, "current_sign_in_at": "2020-05-06T09:25:38.000Z", "current_sign_in_ip": "103.249.204.78", "password_digest": "$2a$12$nh.jcgRjqZJmjgiCJJVTrO9IUAKLm8ziAFYk7GlYxqTJjBcjpQnNq", "email": "sellertest1@yopmail.com", "role_id": 2, "profile_photo": { "url": null, "thumb": { "url": null } }, "site_id": "AS0048", "first_name": "Seller", "last_name": "last_name", "user_name": null, "company_name": "first_seller_company", "phone": null, "display_name": null, "country": null, "state": null, "zipcode": null, "city": null, "address": null, "video_url": null, "time_zone": null, "lat": null, "lng": null, "currency": null, "business_started": null, "priority": false, "membership_renewal": null, "user_id": 0, "ref_id": null, "is_active": true, "paypal_email": null, "auto_withdraw": false, "customer_payment_id": null, "brain_tree_id": null, "rating": 0, "earning": 0, "cover_photo": null, "linkedin_url": null, "facebook_url": null, "licence_number": null, "total_connects": 0, "used_connects": 0, "bonus_connects": 0, "search_priority": false, "referral_bonus": false, "referral_amount": 0, "referral_source": null, "category_ids": [], "notify_category": null, "day_light_saving": null, "tagline": null, "hourly_rate": null, "summary": null, "detail_info": null, "skill_ids": null, "notify_skill": null, "notify_emails": null, "approved": false, "visible": true, "reset_password_token": null, "reset_password_sent_at": null, "remember_created_at": null, "last_sign_in_at": null, "last_sign_in_ip": null, "confirmation_token": "o3amd3y7UC91-KyOGZFFoMgx6ee2nLRIzlNQ4iQ7500", "confirmed_at": null, "confirmation_sent_at": null, "device_id": null, "notification_token": null, "device_type": null, "provider": null, "uid": null, "stripe_ac_no": null, "bank_detail_approved": true, "created_at": "2020-03-10T12:16:27.000Z", "updated_at": "2020-05-06T09:25:38.000Z", "is_admin": false } } }
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "fail", "message": "Invalid Parameters"
    }

Current User

GET

http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/users

Usage and Examples

curl --location --request GET 'http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/users' \ --header 'X-R-Domain: reviquippo.auctionsoftware.com:7086 ' \ --header 'X-Site-Id: AS0048 ' \ --header 'Content-Type: application/json ' \ --header 'Authorization: eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjo3NywiZXhwIjoxNTg4ODQzNTM4fQ.BnW31bdgX1GSEJ2lXxLZ0mk5Ez7q16uN2DmhXEUO3-Q'

var settings = { "url": "http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/users", "method": "GET", "timeout": 0, "headers": { "X-R-Domain": " reviquippo.auctionsoftware.com:7086 ", "X-Site-Id": " AS0048 ", "Content-Type": " application/json ", "Authorization": "eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjo3NywiZXhwIjoxNTg4ODQzNTM4fQ.BnW31bdgX1GSEJ2lXxLZ0mk5Ez7q16uN2DmhXEUO3-Q" }, }; $.ajax(settings).done(function (response) { console.log(response); });

var http = require('follow-redirects').http; var fs = require('fs'); var options = { 'method': 'GET', 'hostname': 'iquipporev.moblearn.net', 'path': '/reverseproduct/api/v1/users', 'headers': { 'X-R-Domain': ' reviquippo.auctionsoftware.com:7086 ', 'X-Site-Id': ' AS0048 ', 'Content-Type': ' application/json ', 'Authorization': 'eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjo3NywiZXhwIjoxNTg4ODQzNTM4fQ.BnW31bdgX1GSEJ2lXxLZ0mk5Ez7q16uN2DmhXEUO3-Q' }, 'maxRedirects': 20 }; var req = http.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); req.end();

Header & Body Parameters
Name Description
Header
  • {
    • "X-R-Domain": "reviquippo.auctionsoftware.com:7086", "X-Site-Id": "AS0048", "Content-Type": "application/json", "Authorization": "eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjo3NywiZXhwIjoxNTg4ODQzNTM4fQ.BnW31bdgX1GSEJ2lXxLZ0mk5Ez7q16uN2DmhXEUO3-Q"
    }
Responses
Status: 202 - Success
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "success": { "user": { "email": "sellertest1@yopmail.com", "is_buyer": false, "is_seller": true, "user_image": null, "user_detail": { "id": 77, "site_id": "AS0048", "first_name": "Seller", "last_name": "last_name", "user_name": null, "company_name": "first_seller_company", "phone": null, "display_name": null, "country": null, "state": null, "zipcode": null, "city": null, "address": null, "role_id": 2, "profile_photo": { "url": null, "thumb": { "url": null } }, "video_url": null, "time_zone": null, "lat": null, "lng": null, "currency": null, "business_started": null, "priority": false, "membership_renewal": null, "user_id": 0, "ref_id": null, "is_active": true, "paypal_email": null, "auto_withdraw": false, "customer_payment_id": null, "brain_tree_id": null, "rating": 0, "earning": 0, "cover_photo": null, "linkedin_url": null, "facebook_url": null, "licence_number": null, "total_connects": 0, "used_connects": 0, "bonus_connects": 0, "search_priority": false, "referral_bonus": false, "referral_amount": 0, "referral_source": null, "category_ids": [], "notify_category": null, "day_light_saving": null, "tagline": null, "hourly_rate": null, "summary": null, "detail_info": null, "skill_ids": null, "notify_skill": null, "notify_emails": null, "approved": false, "visible": true, "email": "sellertest1@yopmail.com", "password_digest": "$2a$12$nh.jcgRjqZJmjgiCJJVTrO9IUAKLm8ziAFYk7GlYxqTJjBcjpQnNq", "reset_password_token": null, "reset_password_sent_at": null, "remember_created_at": null, "sign_in_count": 3, "current_sign_in_at": "2020-05-06T09:25:38.000Z", "last_sign_in_at": null, "current_sign_in_ip": "103.249.204.78", "last_sign_in_ip": null, "confirmation_token": "o3amd3y7UC91-KyOGZFFoMgx6ee2nLRIzlNQ4iQ7500", "confirmed_at": null, "confirmation_sent_at": null, "device_id": null, "notification_token": null, "device_type": null, "provider": null, "uid": null, "stripe_ac_no": null, "bank_detail_approved": true, "created_at": "2020-03-10T12:16:27.000Z", "updated_at": "2020-05-06T09:25:38.000Z", "is_admin": false } } }
    }
Responses
Status: 302 - Error
  • {
    • “data”: “string”
    }
  • {
    • "error": { "message": "Not Authorized" }
    }

Get Reset Password Token

POST

http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/users/generate_reset_token

Usage and Examples

curl --location --request POST 'http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/users/generate_reset_token' \ --header 'Content-Type: application/json' \ --header 'X-SITE-ID: AS0049' \ --header 'X-R-DOMAIN: reviquippo.auctionsoftware.com:7086' \ --header 'Content-Type: application/json' \ --data-raw '{ "user": { "email": "seller@yopmail.com" } }'

var settings = { var settings = { "url": "http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/users/generate_reset_token", "method": "POST", "timeout": 0, "headers": { "Content-Type": ["application/json", "application/json"], "X-SITE-ID": "AS0049", "X-R-DOMAIN": "reviquippo.auctionsoftware.com:7086" }, "data": JSON.stringify({"user":{"email":"seller@yopmail.com"}}), }; $.ajax(settings).done(function (response) { console.log(response); });

var https = require('follow-redirects').https; var fs = require('fs'); var options = { 'method': 'POST', 'hostname': 'http://procurementapi.auctionsoftware.com/', 'path': '/reverseproduct/api/v1/users/generate_reset_token', 'headers': { 'Content-Type': ['application/json', 'application/json'], 'X-SITE-ID': 'AS0049', 'X-R-DOMAIN': 'reviquippo.auctionsoftware.com:7086' }, 'maxRedirects': 20 }; var req = https.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); var postData = JSON.stringify({"user":{"email":"seller@yopmail.com"}}); req.write(postData); req.end();

Header & Body Parameters
Name Description
Header
  • {
    • "Content-Type": "application/json", "X-SITE-ID": "AS0049", "X-R-DOMAIN": "reviquippo.auctionsoftware.com:7086" }
userdetails
  • {
    • "email": "seller@yopmail.com"
    }
Responses
Status: 202 - Success
  • {
    • "return": "string"
    }
  • {
    • "success": { "token": "4Gjdz0TM2m5CDKerpVBLwRIOzV_9DwMyy73lunT8KIE" }
    }
Responses
Status: 302 - Error
  • {
    • "message": "string"
    }
  • {
    • "error": { "message": "Can't find user with this email." }
    }

Reset Password

POST

http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/users/reset_password

Usage and Examples

curl --location --request POST 'http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/users/reset_password' \ --header 'Content-Type: application/json' \ --header 'X-SITE-ID: AS0049' \ --header 'X-R-DOMAIN: reviquippo.auctionsoftware.com:7086' \ --header 'Content-Type: text/plain' \ --data-raw '{ "reset_password_token": "uh-I167BvGXR02qhZXwxCwimDUy7pMQInsFtTYsHwqg", "user": { "password": "12345678", "password_confirmation": "12345678" } }'

var settings = { var settings = { "url": "http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/users/reset_password", "method": "POST", "timeout": 0, "headers": { "Content-Type": ["application/json", "text/plain"], "X-SITE-ID": "AS0049", "X-R-DOMAIN": "reviquippo.auctionsoftware.com:7086" }, "data": "{\n\t\"reset_password_token\": \"uh-I167BvGXR02qhZXwxCwimDUy7pMQInsFtTYsHwqg\",\n\t\"user\": {\n\t\t\"password\": \"12345678\",\n\t\t\"password_confirmation\": \"12345678\"\n\t}\n}", }; $.ajax(settings).done(function (response) { console.log(response); });

var https = require('follow-redirects').https; var fs = require('fs'); var options = { 'method': 'POST', 'hostname': 'http://procurementapi.auctionsoftware.com/', 'path': '/reverseproduct/api/v1/users/reset_password', 'headers': { 'Content-Type': ['application/json', 'text/plain'], 'X-SITE-ID': 'AS0049', 'X-R-DOMAIN': 'reviquippo.auctionsoftware.com:7086' }, 'maxRedirects': 20 }; var req = https.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); var postData = "{\n\t\"reset_password_token\": \"uh-I167BvGXR02qhZXwxCwimDUy7pMQInsFtTYsHwqg\",\n\t\"user\": {\n\t\t\"password\": \"12345678\",\n\t\t\"password_confirmation\": \"12345678\"\n\t}\n}"; req.write(postData); req.end();

Header & Body Parameters
Name Description
Header
  • {
    • "Content-Type": "application/json", "X-SITE-ID": "AS0049", "X-R-DOMAIN": "reviquippo.auctionsoftware.com:7086" }
userdetails
  • {
    • "reset_password_token": "uh-I167BvGXR02qhZXwxCwimDUy7pMQInsFtTYsHwqg", "user": { "password": "12345678", "password_confirmation": "12345678"
    }
Responses
Status: 202 - Success
  • {
    • "return": "string"
    }
  • {
    • "success": { "message": "Password Changed" }
    }
Responses
Status: 302 - Error
  • {
    • "message": "string"
    }
  • {
    • "error": { "message": "User not found or invalid token or Password not present" }
    }

Get Categories

GET

http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/categories

Usage and Examples

curl --location --request GET 'http://iquipporev.moblearn.net/reverseproduct/api/v1/categories' \ --header 'Content-Type: application/json' \ --header 'X-SITE-ID: {{X_SITE_ID}}' \ --header 'X-R-DOMAIN: {{X_R_DOMAIN}}' \ --header 'Authorization: {{client_token}}'

var settings = { "url": "http://iquipporev.moblearn.net/reverseproduct/api/v1/categories", "method": "GET", "timeout": 0, "headers": { "Content-Type": "application/json", "X-SITE-ID": "{{X_SITE_ID}}", "X-R-DOMAIN": "{{X_R_DOMAIN}}", "Authorization": "{{client_token}}" }, }; $.ajax(settings).done(function (response) { console.log(response); });

var http = require('follow-redirects').http; var fs = require('fs'); var options = { 'method': 'GET', 'hostname': 'iquipporev.moblearn.net', 'path': '/reverseproduct/api/v1/categories?', 'headers': { 'Content-Type': 'application/json', 'X-SITE-ID': '{{X_SITE_ID}}', 'X-R-DOMAIN': '{{X_R_DOMAIN}}', 'Authorization': '{{client_token}}' }, 'maxRedirects': 20 }; var req = http.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); req.end();

Header & Body Parameters
Name Description
Header
  • {
    • X-R-Domain: reviquippo.auctionsoftware.com:7086 X-Site-Id: AS0048 Content-Type: application/json Authorization: authorization_key
    }
Responses
Status: 202 - Success
  • {
    }
  • {
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "fail", "message": "No products Found"
    }

Create Categories

POST

http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/categories

Usage and Examples

curl --location --request POST 'http://iquipporev.moblearn.net/reverseproduct/api/v1/categories' \ --header 'Content-Type: application/json' \ --header 'X-SITE-ID: {{X_SITE_ID}}' \ --header 'X-R-DOMAIN: {{X_R_DOMAIN}}' \ --header 'Authorization: {{client_token}}' \ --header 'Content-Type: text/plain' \ --data-raw '{ "category": { "name": "Burs and Diamondsopt" } }'

var settings = { "url": "http://iquipporev.moblearn.net/reverseproduct/api/v1/categories", "method": "POST", "timeout": 0, "headers": { "Content-Type": ["application/json", "text/plain"], "X-SITE-ID": "{{X_SITE_ID}}", "X-R-DOMAIN": "{{X_R_DOMAIN}}", "Authorization": "{{client_token}}" }, "data": "{\n\t\"category\": {\n\t\t\"name\": \"Burs and Diamondsopt\"\n\t}\n}", }; $.ajax(settings).done(function (response) { console.log(response); });

var http = require('follow-redirects').http; var fs = require('fs'); var options = { 'method': 'POST', 'hostname': 'iquipporev.moblearn.net', 'path': '/reverseproduct/api/v1/categories?', 'headers': { 'Content-Type': ['application/json', 'text/plain'], 'X-SITE-ID': '{{X_SITE_ID}}', 'X-R-DOMAIN': '{{X_R_DOMAIN}}', 'Authorization': '{{client_token}}' }, 'maxRedirects': 20 }; var req = http.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); var postData = "{\n\t\"category\": {\n\t\t\"name\": \"Burs and Diamondsopt\"\n\t}\n}"; req.write(postData); req.end();

Header & Body Parameters
Name Description
Header
  • {
    • X-R-Domain: reviquippo.auctionsoftware.com:7086 X-Site-Id: AS0048 Content-Type: application/json Authorization: authorization_key
    }
Responses
Status: 202 - Success
  • {
    }
  • {
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    }

Update Categories

PUT

http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/categories

Usage and Examples

curl --location --request PUT 'http://iquipporev.moblearn.net/reverseproduct/api/v1/categories' \ --header 'Content-Type: application/json' \ --header 'X-SITE-ID: {{X_SITE_ID}}' \ --header 'X-R-DOMAIN: {{X_R_DOMAIN}}' \ --header 'Authorization: {{client_token}}' \ --header 'Content-Type: text/plain' \ --data-raw '{ "category": { "name": "Alloy" } }'

var settings = { "url": "http://iquipporev.moblearn.net/reverseproduct/api/v1/categories", "method": "PUT", "timeout": 0, "headers": { "Content-Type": ["application/json", "text/plain"], "X-SITE-ID": "{{X_SITE_ID}}", "X-R-DOMAIN": "{{X_R_DOMAIN}}", "Authorization": "{{client_token}}" }, "data": "{\n\t\"category\": {\n\t\t\"name\": \"Alloy\"\n\t}\n}", }; $.ajax(settings).done(function (response) { console.log(response); });

var http = require('follow-redirects').http; var fs = require('fs'); var options = { 'method': 'PUT', 'hostname': 'iquipporev.moblearn.net', 'path': '/reverseproduct/api/v1/categories?', 'headers': { 'Content-Type': ['application/json', 'text/plain'], 'X-SITE-ID': '{{X_SITE_ID}}', 'X-R-DOMAIN': '{{X_R_DOMAIN}}', 'Authorization': '{{client_token}}' }, 'maxRedirects': 20 }; var req = http.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); var postData = "{\n\t\"category\": {\n\t\t\"name\": \"Alloy\"\n\t}\n}"; req.write(postData); req.end();

Header & Body Parameters
Name Description
Header
  • {
    • X-R-Domain: reviquippo.auctionsoftware.com:7086 X-Site-Id: AS0048 Content-Type: application/json Authorization: authorization_key
    }
Responses
Status: 202 - Success
  • {
    }
  • {
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    }

Projects

POST

http://iquipporev.moblearn.net/reverseproduct/api/v1/projects?page=5

Usage and Examples

curl --location --request GET 'http://iquipporev.moblearn.net/reverseproduct/api/v1/projects?page=5' \ --header 'Content-Type: application/json' \ --header 'X-R-DOMAIN: {{X_R_DOMAIN}}' \ --header 'X-SITE-ID: {{X_SITE_ID}}' \ --header 'Authorization: {{client_token}}'

var settings = { "url": "http://iquipporev.moblearn.net/reverseproduct/api/v1/projects?page=5", "method": "GET", "timeout": 0, "headers": { "Content-Type": "application/json", "X-R-DOMAIN": "{{X_R_DOMAIN}}", "X-SITE-ID": "{{X_SITE_ID}}", "Authorization": "{{client_token}}" }, }; $.ajax(settings).done(function (response) { console.log(response); });

var http = require('follow-redirects').http; var fs = require('fs'); var options = { 'method': 'GET', 'hostname': 'iquipporev.moblearn.net', 'path': '/reverseproduct/api/v1/projects?page=5', 'headers': { 'Content-Type': 'application/json', 'X-R-DOMAIN': '{{X_R_DOMAIN}}', 'X-SITE-ID': '{{X_SITE_ID}}', 'Authorization': '{{client_token}}' }, 'maxRedirects': 20 }; var req = http.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); req.end();

Header & Body Parameters
Name Description
Params
  • {
    • {"key":"page","value":"5","equals":true,"description":"","enabled":true}
    }
Header
  • {
    • X-R-Domain: reviquippo.auctionsoftware.com:7086 X-Site-Id: AS0048 Content-Type: application/json Authorization: authorization_key
    }
Responses
Status: 202 - Success
  • {
    • "user_id": number, "ipaddress": "number", "iprestrict": number, "salt": "string", "secretquestion": "string", "secretanswer": "string", "email": "string", "first_name": "string", "last_name": "string", "address": "string", "city": "string", "state": "string", "zip_code": "number", "phone": "number", "country": number, "date_added": "DateTime", "status": "string", "lastseen": "DateTime", "rid": "string", "account_number": "string", "startpage": "string", "styleid": number, "languageid": number, "currencyid": number, "timezone": "string", "displayprofile": number, "emailnotify": number, "companyname": "string", "autopayment": number, "linkedrole": "number", "map_address": "string", "companywebsite": "string", "companycountry": number, "companystate": "string", "companycity": "string"
    }
  • {
    • "user_id": 707, "ipaddress": "::1", "iprestrict": 0, "salt": "~`6Sb", "secretquestion": "{_what_is_my_email_address}", "secretanswer": "a614015a568760cd0e5c95dd114a4bb3", "email": "testing@gmail.com", "first_name": "test", "last_name": "p", "address": "test", "city": "Test", "state": "Texas", "zip_code": "12345", "phone": "(343) 565-7687", "country": 500, "date_added": "2019-04-29T03:15:10.000Z", "status": "active", "lastseen": "2019-05-28T00:46:05.000Z", "rid": "DKJLTL", "account_number": "e-procurement840914247942", "startpage": "main", "styleid": 1, "languageid": 1, "currencyid": 1, "timezone": "(UTC -7:00) Mountain Standard Time", "displayprofile": 1, "emailnotify": 1, "companyname": "axion", "autopayment": 1, "linkedrole": "2", "map_address": "United States,Texas,Test,12345,test", "companywebsite": "axion.com", "companycountry": 0, "companystate": "Texas", "companycity": "test"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "fail", "message": "invalid parameters"
    }

List Project Conversation

GET

http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/projects/85/project_conversations

Usage and Examples

curl --location --request GET 'http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/projects/85/project_conversations' \ --header 'Content-Type: application/json' \ --header 'X-R-DOMAIN: reviquippo.auctionsoftware.com:7086' \ --header 'X-SITE-ID: AS0049' \ --header 'Authorization: eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58'

var settings = { "url": "http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/projects/85/project_conversations", "method": "GET", "timeout": 0, "headers": { "Content-Type": "application/json", "X-R-DOMAIN": "reviquippo.auctionsoftware.com:7086", "X-SITE-ID": "AS0049", "Authorization": "eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58" }, }; $.ajax(settings).done(function (response) { console.log(response); });

var http = require('follow-redirects').http; var fs = require('fs'); var options = { 'method': 'GET', 'hostname': 'procurementapi.auctionsoftware.com', 'path': '/reverseproduct/api/v1/projects/85/project_conversations', 'headers': { 'Content-Type': 'application/json', 'X-R-DOMAIN': 'reviquippo.auctionsoftware.com:7086', 'X-SITE-ID': 'AS0049', 'Authorization': 'eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58' }, 'maxRedirects': 20 }; var req = http.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); req.end();

Header & Body Parameters
Name Description
Header
  • {
    • [{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-R-DOMAIN","value":"{{X_R_DOMAIN}}","type":"text"},{"key":"X-SITE-ID","value":"{{X_SITE_ID}}","type":"text"},{"key":"Authorization","value":"{{client_token}}","type":"text"}]
    }
userdetails
  • {
    }
Responses
Status: 202 - Success
  • {
    }
  • {
    }
Responses
Status: 302 - Error
  • {
    }
  • {
    }

Show Project Conversation

GET

http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/projects/85?opponent=21

Usage and Examples

curl --location --request GET 'http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/projects/85?opponent=21' \ --header 'Content-Type: application/json' \ --header 'X-R-DOMAIN: reviquippo.auctionsoftware.com:7086' \ --header 'X-SITE-ID: AS0049' \ --header 'Authorization: eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58'

var settings = { "url": "http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/projects/85?opponent=21", "method": "GET", "timeout": 0, "headers": { "Content-Type": "application/json", "X-R-DOMAIN": "reviquippo.auctionsoftware.com:7086", "X-SITE-ID": "AS0049", "Authorization": "eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58" }, }; $.ajax(settings).done(function (response) { console.log(response); });

var https = require('follow-redirects').https; var fs = require('fs'); var options = { 'method': 'GET', 'hostname': 'http://procurementapi.auctionsoftware.com/', 'path': '/reverseproduct/api/v1/projects/85?opponent=21', 'headers': { 'Content-Type': 'application/json', 'X-R-DOMAIN': 'reviquippo.auctionsoftware.com:7086', 'X-SITE-ID': 'AS0049', 'Authorization': 'eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58' }, 'maxRedirects': 20 }; var req = https.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); req.end();

Header & Body Parameters
Name Description
Header
  • {
    • {"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-R-DOMAIN","type":"text","value":"{{X_R_DOMAIN}}"},{"key":"X-SITE-ID","type":"text","value":"{{X_SITE_ID}}"},{"key":"Authorization","type":"text","value":"{{client_token}}"}
    }
Params
  • {
    • [{"key":"opponent","value":"21","equals":true,"description":"seller_id","enabled":true}]
    }
Responses
Status: 202 - Success
  • {
    }
  • {
    }
Responses
Status: 302 - Error
  • {
    }
  • {
    }

Create Project Conversation

GET

http://iquipporev.moblearn.net/reverseproduct/api/v1/projects/:id

Usage and Examples

curl --location --request POST 'http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/projects/85/project_conversations' \ --header 'Content-Type: application/json' \ --header 'X-R-DOMAIN: reviquippo.auctionsoftware.com:7086' \ --header 'X-SITE-ID: AS0049' \ --header 'Authorization: eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58' \ --header 'Content-Type: text/plain' \ --data-raw '{ "project_conversation": { "seller_id": 21, "buyer_id": 20 } }'

var settings = { "url": "http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/projects/85/project_conversations", "method": "POST", "timeout": 0, "headers": { "Content-Type": ["application/json", "text/plain"], "X-R-DOMAIN": "reviquippo.auctionsoftware.com:7086", "X-SITE-ID": "AS0049", "Authorization": "eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58" }, "data": "{\n\t\"project_conversation\": {\n\t\t\"seller_id\": 21,\n\t\t\"buyer_id\": 20\n\t}\n}", }; $.ajax(settings).done(function (response) { console.log(response); });

var https = require('follow-redirects').https; var fs = require('fs'); var options = { 'method': 'POST', 'hostname': 'http://procurementapi.auctionsoftware.com/', 'path': '/reverseproduct/api/v1/projects/85/project_conversations', 'headers': { 'Content-Type': ['application/json', 'text/plain'], 'X-R-DOMAIN': 'reviquippo.auctionsoftware.com:7086', 'X-SITE-ID': 'AS0049', 'Authorization': 'eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58' }, 'maxRedirects': 20 }; var req = https.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); var postData = "{\n\t\"project_conversation\": {\n\t\t\"seller_id\": 21,\n\t\t\"buyer_id\": 20\n\t}\n}"; req.write(postData); req.end();

Header & Body Parameters
Name Description
Header
  • {
    • [{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-R-DOMAIN","type":"text","value":"{{X_R_DOMAIN}}"},{"key":"X-SITE-ID","type":"text","value":"{{X_SITE_ID}}"},{"key":"Authorization","type":"text","value":"{{client_token}}"}]
    }
projectetails
  • {
    • "project_conversation": { "seller_id": 21, "buyer_id": 20 }
    }
Responses
Status: 202 - Success
  • {
    }
  • {
    }
Responses
Status: 302 - Error
  • {
    }
  • {
    }

Change Password

POST

http://procurementapi.auctionsoftware.com/API/change_password

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/change_password \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: 3b14ec08-5abb-4dc1-979c-72cdb6c18b7f' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDEzOTMsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQwNDkzfQ.LI0wxEn1PWotSpO2Q-vaW5MsYW3A_VdMfjzcSo_mxng' \ -d 'oldpass=123456&new_pass=12345678'

var data = "oldpass=123456&new_pass=12345678"; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/change_password"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDEzOTMsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQwNDkzfQ.LI0wxEn1PWotSpO2Q-vaW5MsYW3A_VdMfjzcSo_mxng"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "76ed71d4-5c82-4712-a45d-ab826e2e9340"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/change_password', headers: { 'Postman-Token': '9a558d5a-b3d0-46b1-8594-db3b2572159b', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDEzOTMsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQwNDkzfQ.LI0wxEn1PWotSpO2Q-vaW5MsYW3A_VdMfjzcSo_mxng', 'Content-Type': 'application/x-www-form-urlencoded' }, form: { oldpass: '123456', new_pass: '12345678' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
userdetails
  • {
    • oldpass:12345678 new_pass:123456
    }
Responses
Status: 202 - Success
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Success", "message": "password Updated Successfully"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "fail", "message": "No products Found"
    }

Personal Feedback

POST

http://procurementapi.auctionsoftware.com/API/feedback_view

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/feedback_view \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: 7f3e1f55-5a57-42f0-b2b2-564a70d27496' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDk4NjIsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ4OTYyfQ.mThYTT5Q_DqAYZ6EjweLaOLRNbjR8tmkAbD-L60fI64'

var data = null; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/feedback_view"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDk4NjIsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ4OTYyfQ.mThYTT5Q_DqAYZ6EjweLaOLRNbjR8tmkAbD-L60fI64"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "ba3b8f8e-8c3f-409a-a8ad-025863bae391"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/feedback_view', headers: { 'Postman-Token': '1da16466-ea75-4687-aaf3-efe9e03027e4', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDk4NjIsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ4OTYyfQ.mThYTT5Q_DqAYZ6EjweLaOLRNbjR8tmkAbD-L60fI64', 'Content-Type': 'application/x-www-form-urlencoded' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
Responses
Status: 202 - Success
  • {
    • "id": number, "from_userid": number, "to_userid": number, "project_id": number, "comments": "string", "seller_professionalism": number, "seller_communication": number, "delivery": number, "product_quality": number, "sharkmarx_experience": number, "site_sharkmarx": number, "date_added": "datetime"
    }
  • {
    • "id": 55, "from_userid": 708, "to_userid": 707, "project_id": 70244635, "comments": "good", "seller_professionalism": 3, "seller_communication": 2, "delivery": 3, "product_quality": 4, "sharkmarx_experience": 3, "site_sharkmarx": 4, "date_added": "2019-06-11T13:46:51.000Z"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "No Records Found"
    }

List Project Messge

GET

http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/projects/85/project_conversations/1/messages

Usage and Examples

curl --location --request GET 'http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/projects/85/project_conversations/1/messages' \ --header 'Content-Type: application/json' \ --header 'X-R-DOMAIN: reviquippo.auctionsoftware.com:7086' \ --header 'X-SITE-ID: AS0049' \ --header 'Authorization: eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58'

var settings = { "url": "http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/projects/85/project_conversations/1/messages", "method": "GET", "timeout": 0, "headers": { "Content-Type": "application/json", "X-R-DOMAIN": "reviquippo.auctionsoftware.com:7086", "X-SITE-ID": "AS0049", "Authorization": "eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58" }, }; $.ajax(settings).done(function (response) { console.log(response); });

var https = require('follow-redirects').https; var fs = require('fs'); var options = { 'method': 'GET', 'hostname': 'http://procurementapi.auctionsoftware.com/', 'path': '/reverseproduct/api/v1/projects/85/project_conversations/1/messages', 'headers': { 'Content-Type': 'application/json', 'X-R-DOMAIN': 'reviquippo.auctionsoftware.com:7086', 'X-SITE-ID': 'AS0049', 'Authorization': 'eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58' }, 'maxRedirects': 20 }; var req = https.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); req.end();

Header & Body Parameters
Name Description
Header
  • {
    • [{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-R-DOMAIN","type":"text","value":"{{X_R_DOMAIN}}"},{"key":"X-SITE-ID","type":"text","value":"{{X_SITE_ID}}"},{"key":"Authorization","type":"text","value":"{{client_token}}"}]
    }
Responses
Status: 202 - Success
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Success", "message": "Inserted Successfully"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Failed", "message": "Invalid Parameters"
    }

Show Messages

GET

http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/projects/85/project_conversations/1/messages/1

Usage and Examples

curl --location --request GET 'http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/projects/85/project_conversations/1/messages/1' \ --header 'Content-Type: application/json' \ --header 'X-R-DOMAIN: reviquippo.auctionsoftware.com:7086' \ --header 'X-SITE-ID: AS0049' \ --header 'Authorization: eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58'

var settings = { "url": "http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/projects/85/project_conversations/1/messages/1", "method": "GET", "timeout": 0, "headers": { "Content-Type": "application/json", "X-R-DOMAIN": "reviquippo.auctionsoftware.com:7086", "X-SITE-ID": "AS0049", "Authorization": "eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58" }, }; $.ajax(settings).done(function (response) { console.log(response); });

var https = require('follow-redirects').https; var fs = require('fs'); var options = { 'method': 'GET', 'hostname': 'http://procurementapi.auctionsoftware.com/', 'path': '/reverseproduct/api/v1/projects/85/project_conversations/1/messages/1', 'headers': { 'Content-Type': 'application/json', 'X-R-DOMAIN': 'reviquippo.auctionsoftware.com:7086', 'X-SITE-ID': 'AS0049', 'Authorization': 'eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58' }, 'maxRedirects': 20 }; var req = https.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); req.end();

Header & Body Parameters
Name Description
Header
  • {
    • [{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-R-DOMAIN","type":"text","value":"{{X_R_DOMAIN}}"},{"key":"X-SITE-ID","type":"text","value":"{{X_SITE_ID}}"},{"key":"Authorization","type":"text","value":"{{client_token}}"}]
    }
Responses
Status: 202 - Success
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Success", "message": "Inserted Successfully"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Invalid Parameters"
    }

Create Message

POST

http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/projects/85/project_conversations/1/messages

Usage and Examples

curl --location --request POST 'http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/projects/85/project_conversations/1/messages' \ --header 'Content-Type: application/json' \ --header 'X-R-DOMAIN: reviquippo.auctionsoftware.com:7086' \ --header 'X-SITE-ID: AS0049' \ --header 'Authorization: eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58' \ --header 'Content-Type: text/plain' \ --data-raw '{ "message": { "message": "Hi, This is the first Message", "receiver_id": "21" }, "_comments_": "receiver_id is Seller ID" }'

var settings = { "url": "http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/projects/85/project_conversations/1/messages", "method": "POST", "timeout": 0, "headers": { "Content-Type": ["application/json", "text/plain"], "X-R-DOMAIN": "reviquippo.auctionsoftware.com:7086", "X-SITE-ID": "AS0049", "Authorization": "eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58" }, "data": "{\n\t\"message\": {\n\t\t\"message\": \"Hi, This is the first Message\",\n\t\t\"receiver_id\": \"21\"\t\n\t},\n\t\"_comments_\": \"receiver_id is Seller ID\"\n}", }; $.ajax(settings).done(function (response) { console.log(response); });

var https = require('follow-redirects').https; var fs = require('fs'); var options = { 'method': 'POST', 'hostname': 'http://procurementapi.auctionsoftware.com/', 'path': '/reverseproduct/api/v1/projects/85/project_conversations/1/messages', 'headers': { 'Content-Type': ['application/json', 'text/plain'], 'X-R-DOMAIN': 'reviquippo.auctionsoftware.com:7086', 'X-SITE-ID': 'AS0049', 'Authorization': 'eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58' }, 'maxRedirects': 20 }; var req = https.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); var postData = "{\n\t\"message\": {\n\t\t\"message\": \"Hi, This is the first Message\",\n\t\t\"receiver_id\": \"21\"\t\n\t},\n\t\"_comments_\": \"receiver_id is Seller ID\"\n}"; req.write(postData); req.end();

Header & Body Parameters
Name Description
Header
  • {
    • [{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-R-DOMAIN","type":"text","value":"{{X_R_DOMAIN}}"},{"key":"X-SITE-ID","type":"text","value":"{{X_SITE_ID}}"},{"key":"Authorization","type":"text","value":"{{client_token}}"}]
    }
messagedetails
  • {
    • "message": { "message": "Hi, This is the first Message", "receiver_id": "21" }, "_comments_": "receiver_id is Seller ID"
    }
Responses
Status: 202 - Success
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Success", "message": "Inserted Successfully"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Invlaid Parameters"
    }

Update Message

POST

http://procurementapi.auctionsoftware.com/reverseproduct/api/v1/projects/85/project_conversations/1/messages/1

Usage and Examples

curl --location --request PUT 'http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/projects/85/project_conversations/1/messages/1' \ --header 'Content-Type: application/json' \ --header 'X-R-DOMAIN: reviquippo.auctionsoftware.com:7086' \ --header 'X-SITE-ID: AS0049' \ --header 'Authorization: eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58' \ --header 'Content-Type: text/plain' \ --data-raw '{ "message": { "message": "Hi.. This is updated message", "receiver_id": 21 }, "_coments_": "receiver_id is seller_id" }'

var settings = { "url": "http://procurementapi.auctionsoftware.com//reverseproduct/api/v1/projects/85/project_conversations/1/messages/1", "method": "PUT", "timeout": 0, "headers": { "Content-Type": ["application/json", "text/plain"], "X-R-DOMAIN": "reviquippo.auctionsoftware.com:7086", "X-SITE-ID": "AS0049", "Authorization": "eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58" }, "data": "{\n \"message\": {\n \"message\": \"Hi.. This is updated message\",\n \"receiver_id\": 21 \n },\n \"_coments_\": \"receiver_id is seller_id\"\n}", }; $.ajax(settings).done(function (response) { console.log(response); });

var https = require('follow-redirects').https; var fs = require('fs'); var options = { 'method': 'PUT', 'hostname': 'http://procurementapi.auctionsoftware.com/', 'path': '/reverseproduct/api/v1/projects/85/project_conversations/1/messages/1', 'headers': { 'Content-Type': ['application/json', 'text/plain'], 'X-R-DOMAIN': 'reviquippo.auctionsoftware.com:7086', 'X-SITE-ID': 'AS0049', 'Authorization': 'eewh6FgB-5nNJyQr1vTqvcXiSgI0KrtXoG_jewKPj58' }, 'maxRedirects': 20 }; var req = https.request(options, function (res) { var chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function (chunk) { var body = Buffer.concat(chunks); console.log(body.toString()); }); res.on("error", function (error) { console.error(error); }); }); var postData = "{\n \"message\": {\n \"message\": \"Hi.. This is updated message\",\n \"receiver_id\": 21 \n },\n \"_coments_\": \"receiver_id is seller_id\"\n}"; req.write(postData); req.end();

Header & Body Parameters
Name Description
Header
  • {
    • [{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-R-DOMAIN","type":"text","value":"{{X_R_DOMAIN}}"},{"key":"X-SITE-ID","type":"text","value":"{{X_SITE_ID}}"},{"key":"Authorization","type":"text","value":"{{client_token}}"}]
    }
messagedetails
  • {
    • "message": { "message": "Hi.. This is updated message", "receiver_id": 21 }, "_coments_": "receiver_id is seller_id"
    }
Responses
Status: 202 - Success
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Success", "message": "Inserted Successfully"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Invalid Parameters"
    }

Pending Auction

POST

http://procurementapi.auctionsoftware.com/API/pending_auction

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/pending_auction \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: fb03fe86-db63-4036-977d-928a9e088482' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDM2NDksImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQyNzQ5fQ.KsxWPVhbEqkhuF3eZfqvGqB6i8Jq7GnmsrUCvY8-inQ'

var data = null; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/pending_auction"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDM2NDksImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQyNzQ5fQ.KsxWPVhbEqkhuF3eZfqvGqB6i8Jq7GnmsrUCvY8-inQ"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "4919464d-d28b-4d9f-b269-ed2229090a14"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/pending_auction', headers: { 'Postman-Token': '3d90f0a1-9f11-46d1-9b4c-ccfbc0e1b497', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDM2NDksImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQyNzQ5fQ.KsxWPVhbEqkhuF3eZfqvGqB6i8Jq7GnmsrUCvY8-inQ', 'Content-Type': 'application/x-www-form-urlencoded' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
Responses
Status: 202 - Success
  • {
    • "id": number, "project_id": number, "project_title": "string", "categoryname": "string", "startprice": number
    }
  • {
    • "id": 849, "project_id": 99731861, "project_title": "pending", "categoryname": "Raw Materials", "startprice": 171
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Token Error.Please Regenerate the Token."
    }

Pending Auction Post

POST

http://procurementapi.auctionsoftware.com/API/pending_post

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/pending_post \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: bb6ff5f3-d590-4f0c-b6c5-0d5ab0354fb2' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDM2NDksImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQyNzQ5fQ.KsxWPVhbEqkhuF3eZfqvGqB6i8Jq7GnmsrUCvY8-inQ' \ -d project_id=99731861

var data = "project_id=99731861"; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/pending_post"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDM2NDksImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQyNzQ5fQ.KsxWPVhbEqkhuF3eZfqvGqB6i8Jq7GnmsrUCvY8-inQ"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "f38d0891-7097-4805-9aae-8c86158872a0"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/pending_post', headers: { 'Postman-Token': 'd3ef42a6-4405-4dd7-b75f-72f5ce7827fd', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDM2NDksImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQyNzQ5fQ.KsxWPVhbEqkhuF3eZfqvGqB6i8Jq7GnmsrUCvY8-inQ', 'Content-Type': 'application/x-www-form-urlencoded' }, form: { project_id: '99731861' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
userdetails
  • {
    • project_id:99731861
    }
Responses
Status: 202 - Success
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Success", "message": "Product Posted Successfully"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "No products Found"
    }

Pending Quotes

POST

http://procurementapi.auctionsoftware.com/API/pending_quotes

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/pending_quotes \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: 5362d8e0-019c-4448-babd-12dccae6a159' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDQxOTksImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQzMjk5fQ.a72KJ7vebcNcOTTmAJkYZMaVxzGGY25Q1uJ4nJEpfWM'

var data = null; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/pending_quotes"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDQxOTksImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQzMjk5fQ.a72KJ7vebcNcOTTmAJkYZMaVxzGGY25Q1uJ4nJEpfWM"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "46522d80-2ffc-44a9-95dd-88aa40b7528a"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/pending_quotes', headers: { 'Postman-Token': '3d207059-10a0-4146-b3f3-d08f8f42821a', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDQxOTksImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQzMjk5fQ.a72KJ7vebcNcOTTmAJkYZMaVxzGGY25Q1uJ4nJEpfWM', 'Content-Type': 'application/x-www-form-urlencoded' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
Responses
Status: 202 - Success
  • {
    • "id": number, "project_id": number, "project_title": "string", "categoryname": "string", "startprice": number
    }
  • {
    • "id": 861, "project_id": 50242198, "project_title": "pquite", "categoryname": "Raw Materials", "startprice": 0
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "No products Found"
    }

Pending Quotes Post

POST

http://procurementapi.auctionsoftware.com/API/pending_quotes_post

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/pending_quotes_post \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: af35c2cf-4e60-498e-9bf5-89e2bc42806b' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDc1MTAsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ2NjEwfQ.ETYiBUiMJhN0BXV_Ii2KR-gvBmhznpHb855BgVJHTeA' \ -d project_id=60843389

var data = "project_id=60843389"; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/pending_quotes_post"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDc1MTAsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ2NjEwfQ.ETYiBUiMJhN0BXV_Ii2KR-gvBmhznpHb855BgVJHTeA"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "0e51c2f1-ae33-418f-824d-12fbaaf734f8"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/pending_quotes_post', headers: { 'Postman-Token': 'b7f64265-da22-4a99-bed2-fefc65cc5290', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDc1MTAsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ2NjEwfQ.ETYiBUiMJhN0BXV_Ii2KR-gvBmhznpHb855BgVJHTeA', 'Content-Type': 'application/x-www-form-urlencoded' }, form: { project_id: '60843389' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
userdetails
  • {
    • project_id:50242198
    }
Responses
Status: 202 - Success
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Success", "message": "Product Posted Successfully"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Invalid Parameters"
    }

Product Detail

POST

http://procurementapi.auctionsoftware.com/API/product_detail

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/product_detail \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: 95e820da-28e7-4766-8f80-c590b4a97089' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDI3MTAsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQxODEwfQ.PZqJZ9vSScw0CG4QeZGYq59iykP0Zxqjb3GettISQaI' \ -d project_id=36025759

var data = "project_id=36025759"; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/product_detail"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDI3MTAsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQxODEwfQ.PZqJZ9vSScw0CG4QeZGYq59iykP0Zxqjb3GettISQaI"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "da5f676e-bbf0-4f4e-84ea-d6e39c111c5b"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/product_detail', headers: { 'Postman-Token': 'ce960c5e-1707-4149-9d6c-9e1e87f87f9a', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDI3MTAsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQxODEwfQ.PZqJZ9vSScw0CG4QeZGYq59iykP0Zxqjb3GettISQaI', 'Content-Type': 'application/x-www-form-urlencoded' }, form: { project_id: '36025759' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
userdetails
  • {
    • project_id:36025759
    }
Responses
Status: 202 - Success
  • {
    • "id": number, "Project_id": number, "brand": "string", "product": "string", "color": "string", "measure": "string", "quantity": number, "startprice": number
    }
  • {
    • "id": 842, "Project_id": 36025759, "brand": "brand1", "product": "lcd", "color": "red", "measure": "kg", "quantity": 0, "startprice": 0
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "No Products Found"
    }

View Lead Quote

POST

http://procurementapi.auctionsoftware.com/API/lead_quote

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/lead_quote \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: 5e4d8050-17b3-483e-89a9-072b4794ccf2' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDM2NDksImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQyNzQ5fQ.KsxWPVhbEqkhuF3eZfqvGqB6i8Jq7GnmsrUCvY8-inQ' \ -d project_id=11083412'

var data = "project_id=11083412"; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/lead_quote"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDM2NDksImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQyNzQ5fQ.KsxWPVhbEqkhuF3eZfqvGqB6i8Jq7GnmsrUCvY8-inQ"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "475bfeb9-7bc4-4c77-8931-b6461af02d44"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/lead_quote', headers: { 'Postman-Token': 'ba0e13d0-0ca7-4ab2-b9c8-2bd784e69d98', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDM2NDksImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQyNzQ5fQ.KsxWPVhbEqkhuF3eZfqvGqB6i8Jq7GnmsrUCvY8-inQ', 'Content-Type': 'application/x-www-form-urlencoded' }, form: { project_id: '11083412' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
userdetails
  • {
    • project_id:36025759
    }
Responses
Status: 202 - Success
  • {
    • "max(bidamount)": number, "project_user_id": number
    }
  • {
    • "max(bidamount)": 1400, "project_user_id": 417
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "No Products Found"
    }

Buyer Pickup Details

POST

http://procurementapi.auctionsoftware.com/API/pickup_details

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/pickup_details \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: ce517692-4675-4703-92db-1e2b8edebcb7' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDc1MTAsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ2NjEwfQ.ETYiBUiMJhN0BXV_Ii2KR-gvBmhznpHb855BgVJHTeA' \ -d project_id=71736227

var data = "project_id=71736227"; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/pickup_details"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDc1MTAsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ2NjEwfQ.ETYiBUiMJhN0BXV_Ii2KR-gvBmhznpHb855BgVJHTeA"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "1b64b4bd-b91d-4dd9-9392-a6269c53e1fa"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/pickup_details', headers: { 'Postman-Token': '51308b34-36a8-4ddb-9c86-86d6114c1b3f', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDc1MTAsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ2NjEwfQ.ETYiBUiMJhN0BXV_Ii2KR-gvBmhznpHb855BgVJHTeA', 'Content-Type': 'application/x-www-form-urlencoded' }, form: { project_id: '71736227' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
userdetails
  • {
    • project_id:36025759
    }
Responses
Status: 202 - Success
  • {
    • "pickupzipcode": "number", "pickradius": number, "accdelivery": number, "del_zipcode": "number", "offload": number, "deliverypickupdate": date"
    }
  • {
    • "pickupzipcode": "75745", "pickradius": 50, "accdelivery": 1, "del_zipcode": "", "offload": 0, "deliverypickupdate": "06/15/2019"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Invalid Project id."
    }

Auction Not Award

POST

http://procurementapi.auctionsoftware.com/API/job_not_award

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/job_not_award \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: a4954056-6d25-44ca-8576-f86d056b6ff6' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDc1MTAsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ2NjEwfQ.ETYiBUiMJhN0BXV_Ii2KR-gvBmhznpHb855BgVJHTeA'

var data = null; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/job_not_award"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDc1MTAsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ2NjEwfQ.ETYiBUiMJhN0BXV_Ii2KR-gvBmhznpHb855BgVJHTeA"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "1054b25f-793e-45d7-aea7-02306903f631"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/job_not_award', headers: { 'Postman-Token': 'b400f226-b44a-475e-9e70-1455ce5c155c', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDc1MTAsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ2NjEwfQ.ETYiBUiMJhN0BXV_Ii2KR-gvBmhznpHb855BgVJHTeA', 'Content-Type': 'application/x-www-form-urlencoded' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
Responses
Status: 202 - Success
  • {
    • "isofferonly": number, "date_starts": "string", "status": "string", "counter_failed": number, "is_quote": number, "is_cancel_admin": number, "date_end": "datetime", "user_id": number, "bidstatus": string, "project_title": "string", "project_id": number, "description": "string", "startprice": number, "haswinner": number, "hours": number, "ispenalty": number, "penalty_paid": "number", "service_buynow": number
    }
  • {
    • "isofferonly": 0, "date_starts": "2019-06-03T21:02:49.000Z", "status": "expired", "counter_failed": 0, "is_quote": 0, "is_cancel_admin": 0, "date_end": "2019-06-04T05:02:49.000Z", "user_id": 708, "bidstatus": null, "project_title": "dfdfdf", "project_id": 79627601, "description": "ttttttt", "startprice": 705, "haswinner": 0, "hours": 0, "ispenalty": 0, "penalty_paid": "", "service_buynow": 0
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Token Error.Please Regenerate the Token."
    }

Quotes Not Award

POST

http://procurementapi.auctionsoftware.com/API/quote_not_award

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/quote_not_award \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: 45a2a31d-68ac-4ba1-9183-f75399c82366' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDc1MTAsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ2NjEwfQ.ETYiBUiMJhN0BXV_Ii2KR-gvBmhznpHb855BgVJHTeA'

var data = null; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/quote_not_award"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDc1MTAsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ2NjEwfQ.ETYiBUiMJhN0BXV_Ii2KR-gvBmhznpHb855BgVJHTeA"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "5178ac01-6939-4fb5-998f-e67df2941251"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/quote_not_award', headers: { 'Postman-Token': '52f86526-0533-4971-be2f-4e2d66dda23c', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDc1MTAsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ2NjEwfQ.ETYiBUiMJhN0BXV_Ii2KR-gvBmhznpHb855BgVJHTeA', 'Content-Type': 'application/x-www-form-urlencoded' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
Responses
Status: 202 - Success
  • {
    • "isofferonly": number, "date_starts": "Datetime", "status": "string", "counter_failed": number, "is_quote": number, "is_cancel_admin": number, "date_end": "Datetime", "user_id": number, "bidstatus": string, "project_title": "string", "project_id": number, "description": "string", "startprice": number, "haswinner": number, "hours": number, "ispenalty": number, "penalty_paid": "string", "service_buynow": number
    }
  • {
    • "isofferonly": 0, "date_starts": "2019-05-31T03:00:02.000Z", "status": "expired", "counter_failed": 0, "is_quote": 1, "is_cancel_admin": 0, "date_end": "2019-06-03T03:00:02.000Z", "user_id": 708, "bidstatus": null, "project_title": "quote33", "project_id": 99305682, "description": "quote33", "startprice": 0, "haswinner": 0, "hours": 0, "ispenalty": 0, "penalty_paid": "", "service_buynow": 0
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Invalid Project id."
    }

Seller Profile

POST

http://procurementapi.auctionsoftware.com/API/seller_profile

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/seller_profile \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: e030c0a5-4b7b-4e69-b1da-1376b5bb7ee9' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ'

var data = null; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/seller_profile"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "01ca8b71-44fe-4720-9185-80f0fc670d13"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/seller_profile', headers: { 'Postman-Token': '291dbbcd-adb5-4fff-a23b-ac959f3fe38a', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ', 'Content-Type': 'application/x-www-form-urlencoded' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
Responses
Status: 202 - Success
  • {
    • "user_id": number, "ipaddress": "number", "password": "string", "salt": "string", "secretquestion": "string", "secretanswer": "string", "email": "string", "first_name": "string", "last_name": "string", "address": "string", "city": "string", "state": "string", "zip_code": "number", "phone": "number", "country": number, "date_added": "Datetime", "subcategories": string, "status": "string", "serviceawards": number, "lastseen": "Datetime", "rid": "string", "account_number": "string", "startpage": "string", "styleid": number, "project_distance": number, "currency_calculation": number, "languageid": number, "currencyid": number, "timezone": "Datetime", "displayprofile": number, "emailnotify": number, "companyname": "string", "autopayment": number, "password_lastchanged": "Datetime", "linkedrole": "number", "map_address": "string", "companywebsite": "string", "companycountry": number, "companystate": "string", "companycity": "string", "notifyme": number, "cellphone": "number", "companyphone": "number", "wepay_user_id": number, "wepay_access_token": "string", "wepay_token_type": "string", "wepay_account_id": number, "wepay_account_number": number, "sharkmarx_rating": number, "profile_updated": number, "discount_percent": number, "userpass": "string"
    }
  • {
    • "user_id": 707, "ipaddress": "::1", "password": "b923cbb5117a374dc9891b1def1a85b5", "salt": "%^&*(", "secretquestion": "{_what_is_my_email_address}", "secretanswer": "a614015a568760cd0e5c95dd114a4bb3", "email": "test.auctionsoftware@gmail.com", "first_name": "test", "last_name": "p", "address": "livetest", "city": "texas", "state": "Alabama", "zip_code": "75754", "phone": "(789) 456-1230", "country": 500, "date_added": "2019-04-29T03:15:10.000Z", "subcategories": null, "status": "active", "serviceawards": 3, "lastseen": "2019-06-06T02:51:48.000Z", "rid": "DKJLTL", "account_number": "e-procurement840914247942", "startpage": "main", "styleid": 1, "project_distance": 1, "currency_calculation": 1, "languageid": 1, "currencyid": 1, "timezone": "(UTC -5:00) Eastern Standard Time", "displayprofile": 1, "emailnotify": 1, "companyname": "axion", "autopayment": 1, "posthtml": 0, "password_lastchanged": "2019-05-31T02:13:17.000Z", "linkedrole": "2", "map_address": "United States,Alabama,texas,75754,livetest", "companywebsite": "axion.com", "companycountry": 0, "companystate": "Texas", "companycity": "test", "notifyme": 1, "cellphone": "(343) 565-7687", "companyphone": "(343) 565-7687", "wepay_user_id": 187211645, "wepay_access_token": "STAGE_d696778691811e333728791941e9ab3d792b7205f2acc86d050feb70f96c5f3c", "wepay_token_type": "BEARER", "wepay_account_id": 1947343258, "wepay_account_number": 36633692, "sharkmarx_rating": 0, "profile_updated": 1, "discount_percent": 100, "userpass": "b923cbb5117a374dc9891b1def1a85b5"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Invalid User id."
    }

Seller Profile Update

POST

http://procurementapi.auctionsoftware.com/API/seller_profile_update

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/seller_profile_update \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: 32feab67-f284-4d63-88f7-7866ab2a0e07' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ' \ -d 'first_name=test&last_name=p&email=test.auctionsoftware%40gmail.com&cellphone=(789)%20456-1230&aemail=test.auctionsoftware%2B1%40gmail.com&companyname=axion&companywebsite=axion.com&address=livetest&state=Alabama&city=texas&zip_code=75754&timezone=(UTC%20-5%3A00)%20Eastern%20Standard%20Time&category=Insurance%2CPlants%2CRaw%20Materials&brand=Alliance%2CCambridge%2CCapital%2CFlexlock%2CFisher&roleid=2'

var data = "first_name=test&last_name=p&email=test.auctionsoftware%40gmail.com&cellphone=(789)%20456-1230&aemail=test.auctionsoftware%2B1%40gmail.com&companyname=axion&companywebsite=axion.com&address=livetest&state=Alabama&city=texas&zip_code=75754&timezone=(UTC%20-5%3A00)%20Eastern%20Standard%20Time&category=Insurance%2CPlants%2CRaw%20Materials&brand=Alliance%2CCambridge%2CCapital%2CFlexlock%2CFisher&roleid=2"; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/seller_profile_update"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "f1152544-625d-4d02-9baa-830d0551246a"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/seller_profile_update', headers: { 'Postman-Token': 'a364252b-d1b5-4099-829a-391f058a63b3', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ', 'Content-Type': 'application/x-www-form-urlencoded' }, form: { first_name: 'test', last_name: 'p', email: 'test.auctionsoftware@gmail.com', cellphone: '(789) 456-1230', aemail: 'test.auctionsoftware+1@gmail.com', companyname: 'axion', companywebsite: 'axion.com', address: 'livetest', state: 'Alabama', city: 'texas', zip_code: '75754', timezone: '(UTC -5:00) Eastern Standard Time', category: 'Insurance,Plants,Raw Materials', brand: 'Alliance,Cambridge,Capital,Flexlock,Fisher', roleid: '2' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
userdetails
  • {
    • first_name:test last_name:p email:sellertest@gmail.com cellphone:(789) 456-1230 aemail:sellertest+1@gmail.com companyname:axion companywebsite:axion.com address:livetest state:Alabama city:texas zip_code:75754 timezone:(UTC -5:00) Eastern Standard Time category:Insurance,Plants,Raw Materials brand:Alliance,Cambridge,Capital,Flexlock,Fisher roleid:2
    }
Responses
Status: 202 - Success
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Success", "message": "Profile Details Updated Successfully"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Token Error.Please Regenerate the Token."
    }

Seller Subscription

POST

http://procurementapi.auctionsoftware.com/API/seller_subscriptons

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/seller_subscriptons \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: 828a63d9-7bd7-481b-99dc-2f4e7086ebfb' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NTEwNjcsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODUwMTY3fQ.nmzJvVXueB5D2Z30bxb-86p-4B6H1ghGFtqt6RgalE0'

var data = null; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/seller_subscriptons"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NTEwNjcsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODUwMTY3fQ.nmzJvVXueB5D2Z30bxb-86p-4B6H1ghGFtqt6RgalE0"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "2f01493a-120a-4dd1-9249-369e7d961486"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/seller_subscriptons', headers: { 'Postman-Token': 'ea7ac6d6-caed-415c-a993-c0efba065bef', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NTEwNjcsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYwODUwMTY3fQ.nmzJvVXueB5D2Z30bxb-86p-4B6H1ghGFtqt6RgalE0', 'Content-Type': 'application/x-www-form-urlencoded' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
Responses
Status: 202 - Success
  • {
    • "cost": "number"
    }
  • {
    • "cost": "99.00"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "No Subscription Found"
    }

Seller Dashboard - Live Auctions

POST

http://procurementapi.auctionsoftware.com/API/seller_dashboard

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/seller_dashboard \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: a0b56829-936d-4405-bf78-9cb067cb74a2' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ'

var data = null; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/seller_dashboard"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "e12c57a2-438c-4862-affb-27409c5510d1"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/seller_dashboard', headers: { 'Postman-Token': 'a58c0f20-d1df-41fa-a5e0-90121d489859', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ', 'Content-Type': 'application/x-www-form-urlencoded' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
Responses
Status: 202 - Success
  • {
    • "featured": number, "featured_searchresults": number, "reserve": number, "bold": number, "highlite": number, "buynow_qty": number, "buynow": number, "buynow_price": number, "buynow_purchases": number, "currentprice": number, "project_id": number, "cid": number, "description": "string", "date_starts": "Datetime", "date_added": "Datetime", "date_end": "Datetime", "user_id": number, "visible": number, "views": number, "project_title": "string", "status": "string", "project_details": "string", "project_type": "string", "bid_details": "string", "filtered_auctiontype": "string", "user_city": "string", "user_state": "string", "user_zipcode": "number", "username": "string"
    }
  • {
    • "featured": 0, "featured_searchresults": 0, "reserve": 0, "bold": 0, "highlite": 0, "buynow_qty": 0, "buynow": 0, "buynow_price": 0, "buynow_purchases": 0, "currentprice": 0, "project_id": 94878585, "cid": 19, "description": "test_buy2", "date_starts": "2019-06-07T05:30:37.000Z", "date_added": "2019-06-07T05:30:37.000Z", "date_end": "2019-06-08T05:30:37.000Z", "user_id": 707, "visible": 1, "views": 0, "project_title": "test_buy1", "status": "open", "close_date": "0000-00-00 00:00:00", "project_details": "public", "project_type": "reverse", "bid_details": "open", "filtered_auctiontype": "regular", "user_city": "texas", "user_state": "Alabama", "user_zipcode": "75754", "username": ""
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Token Error.Please Regenerate the Token."
    }

Seller Dashboard - Live Quotes

POST

http://procurementapi.auctionsoftware.com/API/seller_live_quotes

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/seller_live_quotes \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: b2b4e73f-a1d8-433d-a1e5-8917cffd7890' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ'

var data = null; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/seller_live_quotes"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "921317c6-882a-4be5-8c65-857504467c05"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/seller_live_quotes', headers: { 'Postman-Token': '805d00c4-489b-4f53-88af-bb39368e30d4', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ', 'Content-Type': 'application/x-www-form-urlencoded' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
Responses
Status: 202 - Success
  • {
    • "featured": number, "featured_searchresults": number, "reserve": number, "buynow_qty": number, "buynow": number, "buynow_price": number, "currentprice": number, "project_id": number, "cid": number, "description": "string", "date_starts": "datetime", "date_added": "datetime", "date_end": "datetime", "user_id": number, "visible": number, "views": number, "project_title": "string", "expiry_date": number, "additional_info": string, "bids": number, "status": "string", "project_details": "string", "project_type": "string", "bid_details": "string", "startprice": number, "retailprice": number, "filtered_auctiontype": "string", "user_city": "string", "user_state": "string", "user_zipcode": "number"
    }
  • {
    • "featured": 0, "featured_searchresults": 0, "reserve": 0, "buynow_qty": 0, "buynow": 0, "buynow_price": 0, "currentprice": 0, "project_id": 44057990, "cid": 19, "description": "quote4", "date_starts": "2019-06-07T05:11:28.000Z", "date_added": "2019-06-07T05:11:28.000Z", "date_end": "2019-06-08T05:11:28.000Z", "user_id": 708, "visible": 1, "views": 0, "project_title": "quote4", "expiry_date": 0, "additional_info": null, "bids": 0, "status": "open", "project_details": "public", "project_type": "reverse", "bid_details": "open", "startprice": 0, "retailprice": 0, "filtered_auctiontype": "regular", "user_city": "texas", "user_state": "Alabama", "user_zipcode": "75754"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Token Error.Please Regenerate the Token."
    }

Seller Dashboard - Closed Auctions

POST

http://procurementapi.auctionsoftware.com/API/seller_closed_auction

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/seller_closed_auction \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: 1e4ca5c3-ffe3-4588-bb98-9aa96aad7f5b' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ'

var data = null; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/seller_closed_auction"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "0f3958d9-52fa-454b-9d9a-26f350a99fb6"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/seller_closed_auction', headers: { 'Postman-Token': '7507eeb3-7fa3-434f-9078-d371e5b1e8cf', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ', 'Content-Type': 'application/x-www-form-urlencoded' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
Responses
Status: 202 - Success
  • {
    • "bid_id": number, "id": number, "bidamount": number, "bidamounttype": "string", "estimate_days": number, "funding_failed": number, "date_starts": "datetime", "date_end": "datetime", "startprice": number, "delivery": "string", "date_added": "datetime", "bidstatus": "string", "bidstate": "string", "qty": number, "project_id": number, "project_title": "string", "bids": number, "status": "string", "project_details": "string", "project_type": "string", "project_state": "string", "bid_details": "string", "user_id": number, "haswinner": number, "description": "string", "winner_user_id": number, "close_date": "datetime", "filtered_auctiontype": "string"
    }
  • {
    • "bid_id": 425, "id": 677, "bidamount": 101, "bidamounttype": "entire", "estimate_days": 0, "funding_failed": 1, "date_starts": "2019-05-27T21:37:42.000Z", "date_end": "2019-05-28T21:37:42.000Z", "startprice": 1000, "delivery": "pickup", "date_added": "2019-05-28T01:19:09.000Z", "bidstatus": "declined", "bidstate": "wait_approval", "qty": 1, "project_id": 69027104, "project_title": "test_job", "bids": 1, "status": "approval_accepted", "project_details": "public", "project_type": "reverse", "project_state": "service", "bid_details": "open", "user_id": 708, "haswinner": 1, "description": "test_job", "winner_user_id": 707, "close_date": "2019-05-31T01:44:05.000Z", "filtered_auctiontype": "regular"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Token Error.Please Regenerate the Token."
    }

Seller Dashboard - Closed Quotes

POST

http://procurementapi.auctionsoftware.com/API/seller_closed_quotes

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/seller_closed_quotes \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: a78c2fa5-c708-4416-b959-eaf65e507fa2' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ'

var data = null; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/seller_closed_quotes"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "753b5554-b97f-4d2f-99bf-1370aa0f2885"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/seller_closed_quotes', headers: { 'Postman-Token': '43e3cff3-1c94-4069-a9f9-87d7494dfa46', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ', 'Content-Type': 'application/x-www-form-urlencoded' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
Responses
Status: 202 - Success
  • {
    • "bidamount": number, "date_starts": "datetime", "taxexempt": number, "prosub": number, "date_end": "datetime", "startprice": number, "pickupzipcode": "number", "delivery": "string", "project_id": number, "project_title": "string", "bids": number, "status": "string", "project_details": "string", "project_type": "string", "project_state": "string", "bid_details": "string", "user_id": number, "haswinner": number, "description": "string", "hasbuynowwinner": number, "winner_user_id": number, "close_date": "datetime", "filtered_auctiontype": "string"
    }
  • {
    • "bidamount": 100, "date_starts": "2019-05-14T04:32:04.000Z", "taxexempt": 1, "prosub": 0, "date_end": "2019-05-14T19:11:40.000Z", "startprice": 0, "pickupzipcode": "75754", "delivery": "pickup", "project_id": 17842399, "project_title": "quote1", "bids": 1, "status": "approval_accepted", "project_details": "public", "project_type": "reverse", "project_state": "service", "bid_details": "open", "user_id": 708, "haswinner": 1, "description": "quote1", "hasbuynowwinner": 0, "winner_user_id": 707, "close_date": "2019-05-14T19:11:40.000Z", "filtered_auctiontype": "regular"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Token Error.Please Regenerate the Token."
    }

Seller Place Bid

POST

http://procurementapi.auctionsoftware.com/API/place_bid

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/place_bid \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: 9fe22d1b-1cb5-4a35-a55a-a3f309cc35e3' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDk4NjIsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ4OTYyfQ.mThYTT5Q_DqAYZ6EjweLaOLRNbjR8tmkAbD-L60fI64' \ -d 'project_id=30227389&project_user_id=708&bidamount=450'

var data = "project_id=30227389&project_user_id=708&bidamount=450"; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/place_bid"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDk4NjIsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ4OTYyfQ.mThYTT5Q_DqAYZ6EjweLaOLRNbjR8tmkAbD-L60fI64"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "62e3b459-6a02-4c6e-9cb0-05f296dfa070"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/place_bid', headers: { 'Postman-Token': 'e33c8b17-73d4-49b5-a556-5ebc9ce1c0c4', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDk4NjIsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ4OTYyfQ.mThYTT5Q_DqAYZ6EjweLaOLRNbjR8tmkAbD-L60fI64', 'Content-Type': 'application/x-www-form-urlencoded' }, form: { project_id: '30227389', project_user_id: '708', bidamount: '450' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
userdetails
  • {
    • Project_id:30227389, Project_user_id:708, bidamount:450
    }
Responses
Status: 202 - Success
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Success", "message": "values Bidded Successfully"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Failed to Bidding"
    }

Seller Counter Offer

POST

http://procurementapi.auctionsoftware.com/API/counter_offer

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/counter_offer \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: 641c7b60-cc09-44cb-bf03-1a49a3a90052' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjEwMjIyMjUsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYxMDIxMzI1fQ.adgq8dVHDAK21aIKZ8KlArbinKuGPGXOSYhvwEx58kE' \ -d 'project_id=84047411&price_val=300&offer_delevery_val=06%2F14%2F2019&pickup_val=42&offer_price=1&offer_pickup=1&offer_product=1&offer_quantity=1&offer_other=1&offer_des=testing&offer_delivery=1'

var data = "project_id=84047411&price_val=300&offer_delevery_val=06%2F14%2F2019&pickup_val=42&offer_price=1&offer_pickup=1&offer_product=1&offer_quantity=1&offer_other=1&offer_des=testing&offer_delivery=1"; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/counter_offer"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjEwMjIyMjUsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYxMDIxMzI1fQ.adgq8dVHDAK21aIKZ8KlArbinKuGPGXOSYhvwEx58kE"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "627f1ead-b1f5-48e5-b8b6-3f3a0c71fac4"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/counter_offer', headers: { 'Postman-Token': '360dc972-c1f9-480b-80e6-7d0340a51ac5', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjEwMjIyMjUsImlkIjo3MDgsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmUrYnV5ZXJAZ21haWwuY29tIiwiaWF0IjoxNTYxMDIxMzI1fQ.adgq8dVHDAK21aIKZ8KlArbinKuGPGXOSYhvwEx58kE', 'Content-Type': 'application/x-www-form-urlencoded' }, form: { project_id: '84047411', price_val: '300', offer_delevery_val: '06/14/2019', pickup_val: '42', offer_price: '1', offer_pickup: '1', offer_product: '1', offer_quantity: '1', offer_other: '1', offer_des: 'testing', offer_delivery: '1' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
userdetails
  • {
    • project_id:84047411 price_val:300 offer_delevery_val:06/14/2019 pickup_val:42 offer_price:1 offer_pickup:1 offer_product:1 offer_quantity:1 offer_other:1 offer_des:testing offer_delivery:1
    }
Responses
Status: 202 - Success
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Success", "message": "counter offer placed Successfully"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", “data”: “counter offer already placed”
    }

Seller Submit Quote

POST

http://procurementapi.auctionsoftware.com/API/seller_getquote

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/seller_getquote \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: 6e1a4254-8050-4103-a612-7c9f730c4646' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ' \ -d 'project_user_id=708&project_id=80235687&bidamount=300&details=testquote'

var data = "project_user_id=708&project_id=80235687&bidamount=300&details=testquote"; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/seller_getquote"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "2e4a09e7-3568-4e66-b67d-11e852ec46e7"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/seller_getquote', headers: { 'Postman-Token': '645d610e-0af4-40ce-993d-470058798557', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDg4MzUsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ3OTM1fQ.5xqnoQv5HQBqAiAVK4M5weWy7WKxfGvyFT4VubnTAqQ', 'Content-Type': 'application/x-www-form-urlencoded' }, form: { project_user_id: '708', project_id: '80235687', bidamount: '300', details: 'testquote' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
userdetails
  • {
    • project_user_id:708 project_id:44057990 bidamount:300 Details:testquote
    }
Responses
Status: 202 - Success
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Success", "message": "values Quoted Successfully"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Failed to Quote"
    }

Seller Lost Auction

POST

http://procurementapi.auctionsoftware.com/API/lost_auction

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/lost_auction \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: 67e57ba3-126f-4389-83f4-1373f37f1485' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDk4NjIsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ4OTYyfQ.mThYTT5Q_DqAYZ6EjweLaOLRNbjR8tmkAbD-L60fI64'

var data = null; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/lost_auction"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDk4NjIsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ4OTYyfQ.mThYTT5Q_DqAYZ6EjweLaOLRNbjR8tmkAbD-L60fI64"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "952c445a-9024-458d-a681-ba0e588ed3ac"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/lost_auction', headers: { 'Postman-Token': 'eebf80d3-5f03-4519-ad2a-c90109448817', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDk4NjIsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ4OTYyfQ.mThYTT5Q_DqAYZ6EjweLaOLRNbjR8tmkAbD-L60fI64', 'Content-Type': 'application/x-www-form-urlencoded' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
Responses
Status: 202 - Success
  • {
    • "bid_id": number, "id": number, "bidamount": number, "bidamounttype": "string", "date_starts": "datetime", "date_end": "datetime", "startprice": number, "zipcodedelivery": "number", "statepost": "string", "citydelivery": "string", "delivery": "string", "date_added": "datetime", "bidstatus": "string", "qty": number, "project_id": number, "project_title": "string", "bids": number, "status": "string", "project_details": "string", "project_type": "string", "project_state": "string", "bid_details": "string", "user_id": number, "fvfinvoiceid": number, "haswinner": number, "description": "string", "hasbuynowwinner": number, "winner_user_id": number, "close_date": "datetime", "filtered_auctiontype": "string"
    }
  • {
    • "bid_id": 15, "id": 267, "bidamount": 79, "bidamounttype": "entire", "date_starts": "2013-10-23T05:53:32.000Z", "date_end": "2013-10-23T06:35:32.000Z", "startprice": 81, "zipcodedelivery": "75019", "statepost": "Texas", "citydelivery": "coppell", "delivery": "delivery", "date_added": "2013-10-23T06:21:03.000Z", "bidstatus": "choseanother", "qty": 1, "project_id": 42541812, "project_title": "test project by jayanth", "bids": 2, "status": "approval_accepted", "project_details": "public", "project_type": "reverse", "project_state": "service", "bid_details": "open", "user_id": 463, "fvfinvoiceid": 1258, "haswinner": 1, "description": "test description for new project", "hasbuynowwinner": 0, "winner_user_id": 464, "close_date": "2013-10-23T06:35:38.000Z", "filtered_auctiontype": "regular"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "No products Found"
    }

Seller Lost Quotes

POST

http://procurementapi.auctionsoftware.com/API/lost_quote

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/lost_quote \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: 96e6c920-4ced-4e25-a288-cf3d3d693578' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDk4NjIsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ4OTYyfQ.mThYTT5Q_DqAYZ6EjweLaOLRNbjR8tmkAbD-L60fI64'

var data = null; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/lost_quote"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDk4NjIsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ4OTYyfQ.mThYTT5Q_DqAYZ6EjweLaOLRNbjR8tmkAbD-L60fI64"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "d789b5f7-0739-458b-af2e-b4a3130c4d86"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/lost_quote', headers: { 'Postman-Token': '068c9823-159e-41dd-be9b-f0843c22da99', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDk4NjIsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ4OTYyfQ.mThYTT5Q_DqAYZ6EjweLaOLRNbjR8tmkAbD-L60fI64', 'Content-Type': 'application/x-www-form-urlencoded' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
Responses
Status: 202 - Success
  • {
    • "bidamount": number, "date_starts": "datetime", "taxexempt": number, "prosub": number, "date_end": "datetime", "startprice": number, "pickupzipcode": "number", "delivery": "string", "project_id": number, "project_title": "string", "bids": number, "status": "string", "project_details": "string", "project_type": "string", "project_state": "string", "bid_details": "string", "user_id": number, "haswinner": number, "description": "string", "hasbuynowwinner": number, "winner_user_id": number, "close_date": "datetime", "filtered_auctiontype": "string"
    }
  • {
    • "bidamount": 100, "date_starts": "2019-05-14T04:32:04.000Z", "taxexempt": 1, "prosub": 0, "date_end": "2019-05-14T19:11:40.000Z", "startprice": 0, "pickupzipcode": "75754", "delivery": "pickup", "project_id": 17842399, "project_title": "quote1", "bids": 1, "status": "approval_accepted", "project_details": "public", "project_type": "reverse", "project_state": "service", "bid_details": "open", "user_id": 708, "haswinner": 1, "description": "quote1", "hasbuynowwinner": 0, "winner_user_id": 707, "close_date": "2019-05-14T19:11:40.000Z", "filtered_auctiontype": "regular"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "No products Found"
    }

Seller Submit Feedback

POST

http://procurementapi.auctionsoftware.com/API/feedback_submit

Usage and Examples

curl -X POST \ http://procurementapi.auctionsoftware.com/API/feedback_submit \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Postman-Token: 20fe49d1-cc7c-4ea4-b7fa-4298dbe177af' \ -H 'cache-control: no-cache' \ -H 'login: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDk4NjIsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ4OTYyfQ.mThYTT5Q_DqAYZ6EjweLaOLRNbjR8tmkAbD-L60fI64' \ -d 'to_user_id=708&project_id=70244635&comments=good&seller_professionalism=3&seller_communication=2&delivery=3&product_quality=4&sharkmarx_experience=3&site_sharkmarx=4'

var data = "to_user_id=708&project_id=70244635&comments=good&seller_professionalism=3&seller_communication=2&delivery=3&product_quality=4&sharkmarx_experience=3&site_sharkmarx=4"; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === 4) { console.log(this.responseText); } }); xhr.open("POST", "http://procurementapi.auctionsoftware.com/API/feedback_submit"); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xhr.setRequestHeader("login", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDk4NjIsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ4OTYyfQ.mThYTT5Q_DqAYZ6EjweLaOLRNbjR8tmkAbD-L60fI64"); xhr.setRequestHeader("cache-control", "no-cache"); xhr.setRequestHeader("Postman-Token", "17ff0883-230d-413c-86d4-5644e81cb01d"); xhr.send(data);

var request = require("request"); var options = { method: 'POST', url: 'http://procurementapi.auctionsoftware.com/API/feedback_submit', headers: { 'Postman-Token': '152c3cbc-6106-4875-b0ab-7e328dffee19', 'cache-control': 'no-cache', login: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NjA4NDk4NjIsImlkIjo3MDcsImVtYWlsIjoibWFuaXZlbC5hdWN0aW9uc29mdHdhcmVAZ21haWwuY29tIiwiaWF0IjoxNTYwODQ4OTYyfQ.mThYTT5Q_DqAYZ6EjweLaOLRNbjR8tmkAbD-L60fI64', 'Content-Type': 'application/x-www-form-urlencoded' }, form: { to_user_id: '708', project_id: '70244635', comments: 'good', seller_professionalism: '3', seller_communication: '2', delivery: '3', product_quality: '4', sharkmarx_experience: '3', site_sharkmarx: '4' } }; request(options, function (error, response, body) { if (error) throw new Error(error); console.log(body); });

Header & Body Parameters
Name Description
Header
  • {
    • Content-Type : application/x-www-form-urlencoded login : “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.0iFxhe6FMhuJoe2klTo5gsM_514ROZZD6vzFIArQrI”
    }
userdetails
  • {
    • To_user_id:708, Project_id:70244635, Comments:good, Seller_professionalism:3, Seller_communication:2, Delivery:3, Product_quality:4, Sharkmarx_experience:3, site_sharkmarx:4
    }
Responses
Status: 202 - Success
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Success", "message": "Feedback Submit Successfully"
    }
Responses
Status: 302 - Error
  • {
    • "status": "string", "message": "string"
    }
  • {
    • "status": "Fail", "message": "Invalid Parameters"
    }