Create sites
headers = {
"API-KEY": "your_unique_api_key_here"
}
response = requests.post("https://api.vomevolunteer.com/api/sites/bulk-create/", headers=headers)Last updated
[
{ "name": "Downtown Clinic" },
{
"name": "North Branch",
"address": "12 King St",
"website": "https://north.example.org"
}
]{
"created": [
{
"id": "8f2c1e5a-....",
"name": "Downtown Clinic",
"description": "",
"address": "",
"general_email": null,
"general_phone": null,
"website": null
}
],
"skipped": [
{ "name": "North Branch", "reason": "already exists" }
]
}