POST
/
v1
/
integrations
/
accounts
curl --request POST \
  --url https://us-central1-siro-prod.cloudfunctions.net/api-externalApi/v1/integrations/accounts \
  --header 'Content-Type: application/json' \
  --data '{
  "externalId": "<string>",
  "name": "<string>",
  "latitude": 123,
  "longitude": 123,
  "addresses": [
    {
      "country": "<string>",
      "street": "<string>",
      "city": "<string>",
      "state": "<string>",
      "zip": "<string>"
    }
  ]
}'
{
  "id": "<string>",
  "externalId": "<string>",
  "latitude": 123,
  "longitude": 123,
  "addresses": [
    "<any>"
  ],
  "name": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Body

application/json

Response

200 - application/json

Create an account

The response is of type object.