Add Quotation

Add Quotation

Purpose

To add new Quotation/location to your organization.

Request URL

https://live.membroz.com/api/quotations

Request Method

POST
Note
  • Send authkey in https header
  • You can add only one quotation per POST request.
  • You must use only Field API names in the input. You can obtain the field API names from Fields metadata API
  • Enterprise customer can replace domain name with their hosting Url. for example https://app.xyz.com/api/quotations
  • API will return inserted quotation data in JSON format or error message.

Request JSON

Attribute Data Type Mandatory Description
quotationname text yes quotationr/location/company name
currency text
country text
timezone text
city text
companyphone text
contactperson text

Sample Request

curl --location --request POST 'https://live.membroz.com/api/saleorders' \
--header 'authkey: XXXXXXXXXX' \
--header 'Content-Type: application/json' \
--data-raw '{
    "status": "active",
    "_id": "5f7186bf8aad9321cc5df2fb",
    "sonumber": 2,
    "customerid": "5e9598377fb65a4204aab5a1",
    "orderdate": "2020-09-26T03:30:56.070Z",
    "shipmentdate": "2020-09-25T18:30:00.000Z",
    "totalamount": 75000,
    "note": null,
    "adjustment": 0,
    "items": [
        {
            "tax": [],
            "_id": "5f6eb628e5e33a695b36e7d2",
            "item": null,
            "quantity": 5,
            "cost": 15000,
            "discount": 0,
            "totalcost": 75000
        }
    ],
    "branchid": "5e954c7b9df11624f81e7859",
    "createdAt": "2020-09-28T06:46:23.119Z",
    "updatedAt": "2020-09-28T06:46:23.119Z",
    "updatedby": "5e954c7b9df11624f81e785b",
    "addedby":  "5e954c7b9df11624f81e785b",
}'
OkHttpClient client = new OkHttpClient().newBuilder()
  .build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\r\n    \"status\": \"active\",\r\n    \"_id\": \"5f7186bf8aad9321cc5df2fb\",\r\n    \"sonumber\": 2,\r\n    \"customerid\": \"5e9598377fb65a4204aab5a1\",\r\n    \"orderdate\": \"2020-09-26T03:30:56.070Z\",\r\n    \"shipmentdate\": \"2020-09-25T18:30:00.000Z\",\r\n    \"totalamount\": 75000,\r\n    \"note\": null,\r\n    \"adjustment\": 0,\r\n    \"items\": [\r\n        {\r\n            \"tax\": [],\r\n            \"_id\": \"5f6eb628e5e33a695b36e7d2\",\r\n            \"item\": null,\r\n            \"quantity\": 5,\r\n            \"cost\": 15000,\r\n            \"discount\": 0,\r\n            \"totalcost\": 75000\r\n        }\r\n    ],\r\n    \"branchid\": \"5e954c7b9df11624f81e7859\",\r\n    \"createdAt\": \"2020-09-28T06:46:23.119Z\",\r\n    \"updatedAt\": \"2020-09-28T06:46:23.119Z\",\r\n    \"updatedby\": \"5e954c7b9df11624f81e785b\",\r\n    \"addedby\": {\r\n        \"isfirstlogin\": false,\r\n        \"status\": \"active\",\r\n        \"_id\": \"5e954c7b9df11624f81e785b\",\r\n        \"username\": \"membrozgym@gmail.com\",\r\n        \"password\": \"$2a$10$xE/CIr/hKCKvBaaJwUlZHuV7MFi2Ao.9jwh0RAYpAEfgr3dCfNABq\",\r\n        \"role\": \"5dd37f876c98a22df08b9509\",\r\n        \"anroiddevices\": [\r\n            {\r\n                \"_id\": \"5ebd0831a6f1722dbd1a604c\",\r\n                \"deviceid\": \"2599db9b1c4af598\"\r\n            },\r\n            {\r\n                \"_id\": \"5ed242a4fa2150bfa757d30a\",\r\n                \"deviceid\": \"f7185abc7e9e2480\"\r\n            },\r\n            {\r\n                \"_id\": \"5f0ea9703a10b8350917e075\",\r\n                \"deviceid\": \"57c3fb83d15813a2\"\r\n            },\r\n            {\r\n                \"_id\": \"5f215bba9179ab5f9bee1245\",\r\n                \"deviceid\": \"8310b78d251fd4de\"\r\n            },\r\n            {\r\n                \"_id\": \"5f215ceb9179ab5f9bee1246\",\r\n                \"deviceid\": \"e875606486385cb3\"\r\n            }\r\n        ],\r\n        \"iosdevices\": [],\r\n        \"designationid\": \"5ed0b4ad1b4f7c7b2677f62f\",\r\n        \"branchid\": \"5e954c7b9df11624f81e7859\",\r\n        \"property\": {\r\n            \"fullname\": \"Membroz Gym\",\r\n            \"mobile_number\": null,\r\n            \"email\": \"membrozgym@gmail.com\",\r\n            \"country\": \"United States\",\r\n            \"membrozid\": \"5e954c7b9df11624f81e7859\",\r\n            \"isadmin\": false\r\n        },\r\n        \"createdAt\": \"2020-04-14T05:39:07.850Z\",\r\n        \"updatedAt\": \"2020-08-24T12:40:01.713Z\",\r\n        \"fullname\": \"Membroz Gym \",\r\n        \"namenumber\": \"Membroz Gym \",\r\n        \"salarycomponent\": []\r\n    }\r\n}");
Request request = new Request.Builder()
  .url("https://live.membroz.com/api/saleorders")
  .method("POST", body)
  .addHeader("authkey", "XXXXXXXXXX")
  .addHeader("Content-Type", "application/json")
  .build();
Response response = client.newCall(request).execute();
 "https://live.membroz.com/api/saleorders",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS =>"{\r\n    \"status\": \"active\",\r\n    \"_id\": \"5f7186bf8aad9321cc5df2fb\",\r\n    \"sonumber\": 2,\r\n    \"customerid\": \"5e9598377fb65a4204aab5a1\",\r\n    \"orderdate\": \"2020-09-26T03:30:56.070Z\",\r\n    \"shipmentdate\": \"2020-09-25T18:30:00.000Z\",\r\n    \"totalamount\": 75000,\r\n    \"note\": null,\r\n    \"adjustment\": 0,\r\n    \"items\": [\r\n        {\r\n            \"tax\": [],\r\n            \"_id\": \"5f6eb628e5e33a695b36e7d2\",\r\n            \"item\": null,\r\n            \"quantity\": 5,\r\n            \"cost\": 15000,\r\n            \"discount\": 0,\r\n            \"totalcost\": 75000\r\n        }\r\n    ],\r\n    \"branchid\": \"5e954c7b9df11624f81e7859\",\r\n    \"createdAt\": \"2020-09-28T06:46:23.119Z\",\r\n    \"updatedAt\": \"2020-09-28T06:46:23.119Z\",\r\n    \"updatedby\": \"5e954c7b9df11624f81e785b\",\r\n    \"addedby\": {\r\n        \"isfirstlogin\": false,\r\n        \"status\": \"active\",\r\n        \"_id\": \"5e954c7b9df11624f81e785b\",\r\n        \"username\": \"membrozgym@gmail.com\",\r\n        \"password\": \"$2a$10$xE/CIr/hKCKvBaaJwUlZHuV7MFi2Ao.9jwh0RAYpAEfgr3dCfNABq\",\r\n        \"role\": \"5dd37f876c98a22df08b9509\",\r\n        \"anroiddevices\": [\r\n            {\r\n                \"_id\": \"5ebd0831a6f1722dbd1a604c\",\r\n                \"deviceid\": \"2599db9b1c4af598\"\r\n            },\r\n            {\r\n                \"_id\": \"5ed242a4fa2150bfa757d30a\",\r\n                \"deviceid\": \"f7185abc7e9e2480\"\r\n            },\r\n            {\r\n                \"_id\": \"5f0ea9703a10b8350917e075\",\r\n                \"deviceid\": \"57c3fb83d15813a2\"\r\n            },\r\n            {\r\n                \"_id\": \"5f215bba9179ab5f9bee1245\",\r\n                \"deviceid\": \"8310b78d251fd4de\"\r\n            },\r\n            {\r\n                \"_id\": \"5f215ceb9179ab5f9bee1246\",\r\n                \"deviceid\": \"e875606486385cb3\"\r\n            }\r\n        ],\r\n        \"iosdevices\": [],\r\n        \"designationid\": \"5ed0b4ad1b4f7c7b2677f62f\",\r\n        \"branchid\": \"5e954c7b9df11624f81e7859\",\r\n        \"property\": {\r\n            \"fullname\": \"Membroz Gym\",\r\n            \"mobile_number\": null,\r\n            \"email\": \"membrozgym@gmail.com\",\r\n            \"country\": \"United States\",\r\n            \"membrozid\": \"5e954c7b9df11624f81e7859\",\r\n            \"isadmin\": false\r\n        },\r\n        \"createdAt\": \"2020-04-14T05:39:07.850Z\",\r\n        \"updatedAt\": \"2020-08-24T12:40:01.713Z\",\r\n        \"fullname\": \"Membroz Gym \",\r\n        \"namenumber\": \"Membroz Gym \",\r\n        \"salarycomponent\": []\r\n    }\r\n}",
  CURLOPT_HTTPHEADER => array(
    "authkey: XXXXXXXXXX",
    "Content-Type: application/json"
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
import requests

url = "https://live.membroz.com/api/saleorders"

payload = "{\r\n    \"status\": \"active\",\r\n    \"_id\": \"5f7186bf8aad9321cc5df2fb\",\r\n    \"sonumber\": 2,\r\n    \"customerid\": \"5e9598377fb65a4204aab5a1\",\r\n    \"orderdate\": \"2020-09-26T03:30:56.070Z\",\r\n    \"shipmentdate\": \"2020-09-25T18:30:00.000Z\",\r\n    \"totalamount\": 75000,\r\n    \"note\": null,\r\n    \"adjustment\": 0,\r\n    \"items\": [\r\n        {\r\n            \"tax\": [],\r\n            \"_id\": \"5f6eb628e5e33a695b36e7d2\",\r\n            \"item\": null,\r\n            \"quantity\": 5,\r\n            \"cost\": 15000,\r\n            \"discount\": 0,\r\n            \"totalcost\": 75000\r\n        }\r\n    ],\r\n    \"branchid\": \"5e954c7b9df11624f81e7859\",\r\n    \"createdAt\": \"2020-09-28T06:46:23.119Z\",\r\n    \"updatedAt\": \"2020-09-28T06:46:23.119Z\",\r\n    \"updatedby\": \"5e954c7b9df11624f81e785b\",\r\n    \"addedby\": {\r\n        \"isfirstlogin\": false,\r\n        \"status\": \"active\",\r\n        \"_id\": \"5e954c7b9df11624f81e785b\",\r\n        \"username\": \"membrozgym@gmail.com\",\r\n        \"password\": \"$2a$10$xE/CIr/hKCKvBaaJwUlZHuV7MFi2Ao.9jwh0RAYpAEfgr3dCfNABq\",\r\n        \"role\": \"5dd37f876c98a22df08b9509\",\r\n        \"anroiddevices\": [\r\n            {\r\n                \"_id\": \"5ebd0831a6f1722dbd1a604c\",\r\n                \"deviceid\": \"2599db9b1c4af598\"\r\n            },\r\n            {\r\n                \"_id\": \"5ed242a4fa2150bfa757d30a\",\r\n                \"deviceid\": \"f7185abc7e9e2480\"\r\n            },\r\n            {\r\n                \"_id\": \"5f0ea9703a10b8350917e075\",\r\n                \"deviceid\": \"57c3fb83d15813a2\"\r\n            },\r\n            {\r\n                \"_id\": \"5f215bba9179ab5f9bee1245\",\r\n                \"deviceid\": \"8310b78d251fd4de\"\r\n            },\r\n            {\r\n                \"_id\": \"5f215ceb9179ab5f9bee1246\",\r\n                \"deviceid\": \"e875606486385cb3\"\r\n            }\r\n        ],\r\n        \"iosdevices\": [],\r\n        \"designationid\": \"5ed0b4ad1b4f7c7b2677f62f\",\r\n        \"branchid\": \"5e954c7b9df11624f81e7859\",\r\n        \"property\": {\r\n            \"fullname\": \"Membroz Gym\",\r\n            \"mobile_number\": null,\r\n            \"email\": \"membrozgym@gmail.com\",\r\n            \"country\": \"United States\",\r\n            \"membrozid\": \"5e954c7b9df11624f81e7859\",\r\n            \"isadmin\": false\r\n        },\r\n        \"createdAt\": \"2020-04-14T05:39:07.850Z\",\r\n        \"updatedAt\": \"2020-08-24T12:40:01.713Z\",\r\n        \"fullname\": \"Membroz Gym \",\r\n        \"namenumber\": \"Membroz Gym \",\r\n        \"salarycomponent\": []\r\n    }\r\n}"
headers = {
  'authkey': 'XXXXXXXXXX',
  'Content-Type': 'application/json'
}

response = requests.request("POST", url, headers=headers, data = payload)

print(response.text.encode('utf8'))
require "uri"
require "net/http"

url = URI("https://live.membroz.com/api/saleorders")

https = Net::HTTP.new(url.host, url.port);
https.use_ssl = true

request = Net::HTTP::Post.new(url)
request["authkey"] = "XXXXXXXXXX"
request["Content-Type"] = "application/json"
request.body = "{\r\n    \"status\": \"active\",\r\n    \"_id\": \"5f7186bf8aad9321cc5df2fb\",\r\n    \"sonumber\": 2,\r\n    \"customerid\": \"5e9598377fb65a4204aab5a1\",\r\n    \"orderdate\": \"2020-09-26T03:30:56.070Z\",\r\n    \"shipmentdate\": \"2020-09-25T18:30:00.000Z\",\r\n    \"totalamount\": 75000,\r\n    \"note\": null,\r\n    \"adjustment\": 0,\r\n    \"items\": [\r\n        {\r\n            \"tax\": [],\r\n            \"_id\": \"5f6eb628e5e33a695b36e7d2\",\r\n            \"item\": null,\r\n            \"quantity\": 5,\r\n            \"cost\": 15000,\r\n            \"discount\": 0,\r\n            \"totalcost\": 75000\r\n        }\r\n    ],\r\n    \"branchid\": \"5e954c7b9df11624f81e7859\",\r\n    \"createdAt\": \"2020-09-28T06:46:23.119Z\",\r\n    \"updatedAt\": \"2020-09-28T06:46:23.119Z\",\r\n    \"updatedby\": \"5e954c7b9df11624f81e785b\",\r\n    \"addedby\": {\r\n        \"isfirstlogin\": false,\r\n        \"status\": \"active\",\r\n        \"_id\": \"5e954c7b9df11624f81e785b\",\r\n        \"username\": \"membrozgym@gmail.com\",\r\n        \"password\": \"$2a$10$xE/CIr/hKCKvBaaJwUlZHuV7MFi2Ao.9jwh0RAYpAEfgr3dCfNABq\",\r\n        \"role\": \"5dd37f876c98a22df08b9509\",\r\n        \"anroiddevices\": [\r\n            {\r\n                \"_id\": \"5ebd0831a6f1722dbd1a604c\",\r\n                \"deviceid\": \"2599db9b1c4af598\"\r\n            },\r\n            {\r\n                \"_id\": \"5ed242a4fa2150bfa757d30a\",\r\n                \"deviceid\": \"f7185abc7e9e2480\"\r\n            },\r\n            {\r\n                \"_id\": \"5f0ea9703a10b8350917e075\",\r\n                \"deviceid\": \"57c3fb83d15813a2\"\r\n            },\r\n            {\r\n                \"_id\": \"5f215bba9179ab5f9bee1245\",\r\n                \"deviceid\": \"8310b78d251fd4de\"\r\n            },\r\n            {\r\n                \"_id\": \"5f215ceb9179ab5f9bee1246\",\r\n                \"deviceid\": \"e875606486385cb3\"\r\n            }\r\n        ],\r\n        \"iosdevices\": [],\r\n        \"designationid\": \"5ed0b4ad1b4f7c7b2677f62f\",\r\n        \"branchid\": \"5e954c7b9df11624f81e7859\",\r\n        \"property\": {\r\n            \"fullname\": \"Membroz Gym\",\r\n            \"mobile_number\": null,\r\n            \"email\": \"membrozgym@gmail.com\",\r\n            \"country\": \"United States\",\r\n            \"membrozid\": \"5e954c7b9df11624f81e7859\",\r\n            \"isadmin\": false\r\n        },\r\n        \"createdAt\": \"2020-04-14T05:39:07.850Z\",\r\n        \"updatedAt\": \"2020-08-24T12:40:01.713Z\",\r\n        \"fullname\": \"Membroz Gym \",\r\n        \"namenumber\": \"Membroz Gym \",\r\n        \"salarycomponent\": []\r\n    }\r\n}"

response = https.request(request)
puts response.read_body
var client = new RestClient("https://live.membroz.com/api/saleorders");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("authkey", "XXXXXXXXXX");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\r\n    \"status\": \"active\",\r\n    \"_id\": \"5f7186bf8aad9321cc5df2fb\",\r\n    \"sonumber\": 2,\r\n    \"customerid\": \"5e9598377fb65a4204aab5a1\",\r\n    \"orderdate\": \"2020-09-26T03:30:56.070Z\",\r\n    \"shipmentdate\": \"2020-09-25T18:30:00.000Z\",\r\n    \"totalamount\": 75000,\r\n    \"note\": null,\r\n    \"adjustment\": 0,\r\n    \"items\": [\r\n        {\r\n            \"tax\": [],\r\n            \"_id\": \"5f6eb628e5e33a695b36e7d2\",\r\n            \"item\": null,\r\n            \"quantity\": 5,\r\n            \"cost\": 15000,\r\n            \"discount\": 0,\r\n            \"totalcost\": 75000\r\n        }\r\n    ],\r\n    \"branchid\": \"5e954c7b9df11624f81e7859\",\r\n    \"createdAt\": \"2020-09-28T06:46:23.119Z\",\r\n    \"updatedAt\": \"2020-09-28T06:46:23.119Z\",\r\n    \"updatedby\": \"5e954c7b9df11624f81e785b\",\r\n    \"addedby\": {\r\n        \"isfirstlogin\": false,\r\n        \"status\": \"active\",\r\n        \"_id\": \"5e954c7b9df11624f81e785b\",\r\n        \"username\": \"membrozgym@gmail.com\",\r\n        \"password\": \"$2a$10$xE/CIr/hKCKvBaaJwUlZHuV7MFi2Ao.9jwh0RAYpAEfgr3dCfNABq\",\r\n        \"role\": \"5dd37f876c98a22df08b9509\",\r\n        \"anroiddevices\": [\r\n            {\r\n                \"_id\": \"5ebd0831a6f1722dbd1a604c\",\r\n                \"deviceid\": \"2599db9b1c4af598\"\r\n            },\r\n            {\r\n                \"_id\": \"5ed242a4fa2150bfa757d30a\",\r\n                \"deviceid\": \"f7185abc7e9e2480\"\r\n            },\r\n            {\r\n                \"_id\": \"5f0ea9703a10b8350917e075\",\r\n                \"deviceid\": \"57c3fb83d15813a2\"\r\n            },\r\n            {\r\n                \"_id\": \"5f215bba9179ab5f9bee1245\",\r\n                \"deviceid\": \"8310b78d251fd4de\"\r\n            },\r\n            {\r\n                \"_id\": \"5f215ceb9179ab5f9bee1246\",\r\n                \"deviceid\": \"e875606486385cb3\"\r\n            }\r\n        ],\r\n        \"iosdevices\": [],\r\n        \"designationid\": \"5ed0b4ad1b4f7c7b2677f62f\",\r\n        \"branchid\": \"5e954c7b9df11624f81e7859\",\r\n        \"property\": {\r\n            \"fullname\": \"Membroz Gym\",\r\n            \"mobile_number\": null,\r\n            \"email\": \"membrozgym@gmail.com\",\r\n            \"country\": \"United States\",\r\n            \"membrozid\": \"5e954c7b9df11624f81e7859\",\r\n            \"isadmin\": false\r\n        },\r\n        \"createdAt\": \"2020-04-14T05:39:07.850Z\",\r\n        \"updatedAt\": \"2020-08-24T12:40:01.713Z\",\r\n        \"fullname\": \"Membroz Gym \",\r\n        \"namenumber\": \"Membroz Gym \",\r\n        \"salarycomponent\": []\r\n    }\r\n}",  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);

Possible Errors

HTTP Status Error Code Message Reason
permission denied 403 You do not have permission

Sample Response

{
    "status": "active",
    "_id": "5f71913d8aad9321cc5df303",
    "sonumber": 2,
    "customerid": "5e9598377fb65a4204aab5a1",
    "orderdate": "2020-09-26T03:30:56.070Z",
    "shipmentdate": "2020-09-25T18:30:00.000Z",
    "totalamount": 75000,
    "note": null,
    "adjustment": 0,
    "items": [
        {
            "_id": "5f6eb628e5e33a695b36e7d2",
            "tax": [],
            "item": null,
            "quantity": 5,
            "cost": 15000,
            "discount": 0,
            "totalcost": 75000
        }
    ],
    "branchid": "5e954c7b9df11624f81e7859",
    "createdAt": "2020-09-28T07:31:09.400Z",
    "updatedAt": "2020-09-28T07:31:09.400Z",
    "updatedby": "5e954c7b9df11624f81e785b",
    "addedby": "5e954c7b9df11624f81e785b"
}