Creating a service

You'll just need to send a POST request to the Create Product endpoint and pass name,description,images,numbers_of_items,price,type,pricing_types as request body.

curl --location --request POST 'https://rllwjl4z6b.execute-api.eu-central-1.amazonaws.com/api/v1/items' \
--header 'Authorization: Bearer {{api_token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "Split Service",
    "description": "Split Service",
    "images": [
        "https://img.freepik.com/free-vector/nigeria-map-flag-national-emblem_2239-230.jpg?size=338&ext=jpg",
        "https://img.freepik.com/free-vector/nigeria-map-flag-national-emblem_2239-230.jpg?size=338&ext=jpg"
    ],
    "type": "services",
    "pricing_type": "free_entry"
}'