Order Items

Here’s how to use the Patronize API to create items. Items created can either be initiated has a product or a service

📘

Before you begin

Authenticate all Patronize API calls using your secret api_keys

curl --location --request POST 'https://rllwjl4z6b.execute-api.eu-central-1.amazonaws.com/api/v1/items' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer key_xxxxxxxxxxxxxxxxxxxxxxxx' \
--data-raw '{
    "name": "Banana",
    "description": "Wholesome fruit",
    "images": [
        "{{Image URL}}"],
    "number_of_items": 4,
    "price": 1550,
    "type": "products",
    "pricing_type": "single_price"
}'