OpenapiV1Booking links
List booking links
Retrieve a paginated list of booking links for your organization.
Use Cases:
- Display available booking links in partner dashboards
- Build custom booking widgets
- Track booking link performance
Query Parameters
limit?string
Number of results per page (max 100)
Default
"50"cursor?string
Cursor for pagination
is_active?string
Filter by active status
assigned_to?string
Filter by assigned user
Format
uuidResponse Body
application/json
application/json
curl -X GET "https://api.aura-app.ai/v1/booking-links"{
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"organization_id": "string",
"title": "Discovery Call",
"slug": "discovery-call",
"description": "string",
"duration_minutes": 30,
"is_active": true,
"assigned_to": "b9f52997-ff03-4166-bbff-22fd35e12939",
"product_id": "0d012afa-f885-4e65-aeca-37e27701e2d1",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z"
}
],
"pagination": {
"next_cursor": "string",
"has_more": true
}
}{
"success": false,
"error": "Lead not found",
"code": "NOT_FOUND",
"requestId": "req_abc123"
}