curl --request POST \
--url https://api.pocketflows.com/sync/businesses \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"external_id": "<string>",
"name": "<string>",
"metadata": {}
}'
{
"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
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
The external ID of the business
The metadata of the business
The synced `Business` object
The external ID of the business
Arbitrary metadata associated with this business