# Account

Your integration is **connected** to Dr.Online: you run the patient-facing experience and payment; we provide **our** appointment types, practitioners, availability, scheduling, and patient records for people you book or register through this API.

* One **catalog per API credential** (Dr.Online catalogue for that key) — not your own uploaded catalogue.
* Typical flow: `GET /connected/account` → discovery GETs → hold → confirm → optional `GET /connected/patients/{patient_id}`.
* Need another catalogue? Request a **separate credential** (no per-request channel header).

Your credential context: livemode, currency, timezone, and booking feature flags

## GET /connected/account

>

```json
{"openapi":"3.2.0","info":{"title":"Dr.Online Connected API","version":"2026-05-29"},"tags":[{"name":"Account","summary":"Account","description":"Your integration is **connected** to Dr.Online: you run the patient-facing experience and payment; we provide **our** appointment types, practitioners, availability, scheduling, and patient records for people you book or register through this API.\n\n- One **catalog per API credential** (Dr.Online catalogue for that key) — not your own uploaded catalogue.\n- Typical flow: `GET /connected/account` → discovery GETs → hold → confirm → optional `GET /connected/patients/{patient_id}`.\n- Need another catalogue? Request a **separate credential** (no per-request channel header).\n\nYour credential context: livemode, currency, timezone, and booking feature flags"}],"servers":[{"url":"http://localhost:3001/v1","description":"Live (production credentials)"},{"url":"http://localhost:3001/v1","description":"Sandbox (non-production credentials)"}],"security":[{"bearerAuth":[]}],"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","description":"Connected API secret key from the credential reveal flow (`sk_live_…` or `sk_sandbox_…`). Each key is tied to one Dr.Online catalogue. Server-to-server only: `Authorization: Bearer <secret_key>`."}}},"paths":{"/connected/account":{"get":{"operationId":"partnerV1GetAccount","tags":["Account"],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"object":{"type":"string","enum":["account"]},"api_version":{"type":"string","enum":["2026-05-29"],"description":"{\"example\":\"2026-05-29\"}"},"currency":{"type":"string","enum":["GBP","EUR","USD"],"description":"{\"example\":\"GBP\"}"},"external_payment_enabled":{"type":"boolean","description":"{\"example\":true}"},"livemode":{"type":"boolean","description":"{\"example\":false}"},"partner_id":{"type":"string","description":"{\"example\":\"partner_abc123\"}"},"path_version":{"type":"string","enum":["v1"],"description":"{\"example\":\"v1\"}"},"send_transactional_emails":{"type":"boolean","description":"{\"example\":true}"},"timezone":{"type":"string","enum":["Europe/London","Europe/Lisbon","Europe/Dublin"],"description":"{\"example\":\"Europe/London\"}"}},"required":["object","api_version","currency","external_payment_enabled","livemode","partner_id","path_version","send_transactional_emails","timezone"],"additionalProperties":false}}}}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.dronline.uk/connected-api/account.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
