POST
/
sync
/
businesses
/
batch
curl --request POST \
  --url https://api.pocketflows.com/sync/businesses/batch \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "businesses": [
    {
      "id": "<string>",
      "external_id": "<string>",
      "name": "<string>",
      "metadata": {}
    }
  ]
}'
{
  "businesses": [
    {
      "id": "<string>",
      "external_id": "<string>",
      "name": "<string>",
      "metadata": "<any>"
    }
  ]
}

Creates the business if it doesn’t exist or updates the business that corresponds to the id or external_id that is provided. Partially succeeds when some but not all businesses have valid information

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
businesses
object[]
required

The businesses to sync

Response

200 - application/json
The synced `Business` objects
businesses
object[]
required

The businesses that were synced. Will be null for businesses that had errors