API keys to updating a business or businesses

To update your business, make a "POST" request;

📘

POST

https://api.vendy.money/business/:id

Example request

curl --location --request POST 'https://api.vendy.money/business/1' \
--data-raw '{
    "name":"New Business Name"
}'

Example response

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
  "status": true,
  "code": 200,
  "msg": "Business updated",
  "data": {}
}

With the following parameters;

ParametersTypeRequiredDescription
User_IdString(1)Required

Required data to update business;

FieldTypeDescription
NamestringBusiness name
Language
Authentication
Header
Click Try It! to start a request and see the response here!