Submit a contact form
curl --request POST \
--url https://v2.stopbars.com/contact \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"topic": "<string>",
"message": "<string>"
}
'import requests
url = "https://v2.stopbars.com/contact"
payload = {
"email": "jsmith@example.com",
"topic": "<string>",
"message": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({email: 'jsmith@example.com', topic: '<string>', message: '<string>'})
};
fetch('https://v2.stopbars.com/contact', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Contact
Submit a contact form
Public endpoint to submit a contact/support message. Limited to 1 submission per 24 hours per IP.
POST
/
contact
Submit a contact form
curl --request POST \
--url https://v2.stopbars.com/contact \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"topic": "<string>",
"message": "<string>"
}
'import requests
url = "https://v2.stopbars.com/contact"
payload = {
"email": "jsmith@example.com",
"topic": "<string>",
"message": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({email: 'jsmith@example.com', topic: '<string>', message: '<string>'})
};
fetch('https://v2.stopbars.com/contact', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Was this page helpful?
