Zapier is workflow automation software across 7000+ app.
Authentication
To authenticate, you need an API key. Follow these steps to obtain your API key. This API key is linked to your store.
Go to Store Admin > Settings > Integrations > Zapier.
Copy the API key.
Create an Order
API end point
POST https://take.app/api/platform/orders?api_key={api_key}
Input Fields
Customer Name (
customer_name
) - RequiredCustomer Phone (
customer_phone
) - RequiredCustomer Email (
customer_email
) - OptionalTotal Amount (
total_amount
) - OptionalRemark (
remark
) - Optional
Example Request
{
"customer_name": "John Doe",
"customer_phone": "6591234567",
"customer_email": "[email protected]",
"total_amount": 120,
"remark": "Please deliver after 5 PM."
}
This will create an order in the connected store.
Response example
{
"id": "clyr7gpcf0035ajkudunq9uoz",
"number": 28,
"numberDaily": 1,
"remark": "",
"internalNote": null,
"status": "ORDER_STATUS_PENDING",
"paymentStatus": "PAYMENT_STATUS_PENDING",
"fulfillmentStatus": "UNFULFILLED",
"adjustmentAmount": 0,
"totalServiceAmount": 0,
"tipAmount": 0,
"serviceChargeAmount": 0,
"taxInclusive": true,
"totalItemsQuantity": 0,
"totalItemsAmount": 0,
"totalAnswersAmount": 0,
"totalDiscountsAmount": 0,
"totalBeforeTax": 12300,
"totalTax": 0,
"totalAmount": 12300,
"storeId": "cltpfufbn002rao3qnzasdr69",
"customerId": "cltsbmumh00dr5iz9nzwpxy7q",
"customerName": "John Doe",
"customerPhone": "6591234567",
"customerEmail": "[email protected]",
"updatedAt": "2024-07-18T11:46:08.848Z",
"createdAt": "2024-07-18T11:46:08.848Z"
}