Get an application

Returns the full record for one application in your workspace.

Details

DescriptionFetches one application owned by the API key's workspace, with every field (unlike the list, which returns a trimmed item shape for API callers).
HTTP MethodGET
Endpoint URL/v1/applications/:id
AuthorizationAPI key as a bearer token — Authorization: Bearer $VOYLO_API_KEY. The application must belong to the key's workspace, otherwise 404. See Authentication.

Request parameters

ParameterDescriptionLocationConstraintsDefault
idThe application's id.Pathuuid (required)

Request example

cURL
curl https://voylo.ai/v1/applications/8f3b1c2e-9a4d-4e7f-8b21-6c5d4e3f2a1b \
  -H "Authorization: Bearer $VOYLO_API_KEY"

Success response example

200 OK
{
  "id": "8f3b1c2e-9a4d-4e7f-8b21-6c5d4e3f2a1b",
  "name": "Support hotline",
  "actionUrl": "https://api.example.com/voylo/inbound",
  "actionUrlHeaders": {},
  "xmlTemplate": null,
  "finishedUrl": null,
  "finishedUrlHeaders": {},
  "inboundTrunkId": null,
  "recording": "per_call",
  "allowedCallerIds": [],
  "createdAt": "2026-06-23T10:31:00.000Z",
  "updatedAt": "2026-06-23T10:31:00.000Z"
}

Description

  • iduuidApplication id.
  • namestringDisplay name.
  • actionUrlstring | nullURL Voylo POSTs to at each call step to fetch fresh VoyloML.
  • actionUrlHeadersobjectCustom headers sent with each action-URL POST.
  • xmlTemplatestring | nullStatic VoyloML served when no action URL is set.
  • finishedUrlstring | nullPost-call CDR delivery URL.
  • finishedUrlHeadersobjectCustom headers sent with each finished-URL POST.
  • inboundTrunkIduuid | nullInbound trunk this application is attached to.
  • recordingenumalways · never · per_call.
  • allowedCallerIdsstring[]Caller-ID allowlist; empty means any.
  • createdAt / updatedAttimestampISO-8601 creation / last-update times.

Possible errors

ErrorDescription
400 Bad Requestid is not a valid UUID.
401 UnauthorizedAPI key is missing, invalid, or revoked.
403 ForbiddenThe key's role doesn't permit this action.
404 Not FoundNo application with that id in the key's workspace.
Listing applications returns a trimmed item shape for API callers — see List applications.