Update an app
curl --request PATCH \
--url https://api.vambe.me/api/ecommerce-app/{id} \
--header 'Content-Type: application/json' \
--data '{}'const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.vambe.me/api/ecommerce-app/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/ecommerce-app/{id}"
payload = {}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)App management API
Update an app
PATCH
/
api
/
ecommerce-app
/
{id}
Update an app
curl --request PATCH \
--url https://api.vambe.me/api/ecommerce-app/{id} \
--header 'Content-Type: application/json' \
--data '{}'const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.vambe.me/api/ecommerce-app/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/ecommerce-app/{id}"
payload = {}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)Updates the editable fields of an app you own (name, description, logo URL,
contact details, OAuth config, capabilities). Editing an app that was already
approved may require re-submission for review.
Path Parameters
Body
application/json
Minimum string length:
2Minimum string length:
1Minimum string length:
1Pattern:
^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$Minimum string length:
5Show child attributes
Show child attributes
Show child attributes
Show child attributes
Response
200 - undefined
Was this page helpful?
