Core
- Mobile Events
- OAuth Apps and Tokens
- Org-Scoped Tokens
- Integration Connections
- Organizations
- Recordings
- Teams
- Users
Integrations
- Integrations intro
- Accounts
- Opportunities
- Engagements
Introspection
Audit logs
Accounts
Create an account
Create an account
POST
/
v1
/
integrations
/
accounts
Copy
Ask AI
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>"
}
]
}'
Copy
Ask AI
{
"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
.
Copy
Ask AI
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>"
}
]
}'
Copy
Ask AI
{
"id": "<string>",
"externalId": "<string>",
"latitude": 123,
"longitude": 123,
"addresses": [
"<any>"
],
"name": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.