# Get Partner Settings Retrieve the authenticated partner's current settings including branding, contact info, and billing address Endpoint: GET /partners/settings Version: 1.0.2 Security: oauth2ClientCredentials ## Response 200 fields (application/json): - `id` (string) Unique partner identifier (read-only) Example: "2NxK7vPqYtR5mJnLkH3wZcB" - `name` (string) Partner name (read-only) Example: "Acme Health" - `description` (string) Partner description Example: "Leading telehealth provider" - `discount` (string) Human readable discount representation Example: "10%" - `discountValue` (number) Numeric discount value (0.0 to 1.0) Example: 0.1 - `primaryColor` (string) Primary brand color (hex code) Example: "#1a73e8" - `secondaryColor` (string) Secondary brand color (hex code) Example: "#ffffff" - `logo` (string) URL or key of partner logo Example: "https://example.com/logo.png" - `phone` (string) Partner phone number Example: "555-123-4567" - `supportEmail` (string) Support email address Example: "support@partner.com" - `website` (string) Partner website URL Example: "https://partner.com" - `webhookUrl` (string) Webhook URL for order status notifications Example: "https://partner.com/webhooks/orders" - `billingAddressLine1` (string) Billing address line 1 Example: "123 Main St" - `billingAddressLine2` (string) Billing address line 2 Example: "Suite 100" - `billingCity` (string) Billing city Example: "San Francisco" - `billingState` (string) Billing state/province Example: "CA" - `billingPostalCode` (string) Billing postal/zip code Example: "94102" - `billingCountry` (string) Billing country Example: "US" - `createdAt` (string) Partner creation timestamp Example: "2023-10-01T12:00:00Z" - `updatedAt` (string) Partner last update timestamp Example: "2023-10-01T12:00:00Z" ## Response 401 fields (application/json): - `error` (string) Human-readable error message Example: "invalid_client"