openapi: 3.1.0 info: title: HeyMilo Public ATS Design Templates API description: External developer-facing API for HeyMilo. Create interviewers with agentic workflows, ingest candidates, retrieve interview results, and manage workspace resources. version: 2.0.0 servers: - url: https://api.heymilo.ai description: Production security: - ApiKeyAuth: [] tags: - name: Design Templates description: View design templates that control the candidate interview UI. paths: /api/v2/design-templates: get: tags: - Design Templates summary: List design templates description: Returns all design templates for the workspace. operationId: listDesignTemplates parameters: - name: limit in: query required: false schema: type: integer maximum: 100 minimum: 1 default: 20 title: Limit - name: starting_after in: query required: false schema: anyOf: - type: string - type: 'null' title: Starting After - name: search in: query required: false schema: anyOf: - type: string - type: 'null' description: Case-insensitive substring filter applied to the template name. title: Search description: Case-insensitive substring filter applied to the template name. - name: X-API-KEY in: header required: false schema: anyOf: - type: string - type: 'null' title: X-Api-Key - name: Authorization in: header required: false schema: anyOf: - type: string - type: 'null' title: Authorization - name: X-Workspace-Id in: header required: false schema: anyOf: - type: string - type: 'null' title: X-Workspace-Id responses: '200': description: Successful Response content: application/json: schema: $ref: '#/components/schemas/ListResponse_DesignTemplateResponse_' '401': description: Invalid or missing API key. content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '429': description: Rate limit exceeded. content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '422': description: Validation Error content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' /api/v2/design-templates/{template_id}: get: tags: - Design Templates summary: Get a design template description: Returns a single design template by ID. operationId: getDesignTemplate parameters: - name: template_id in: path required: true schema: type: string title: Template Id - name: X-API-KEY in: header required: false schema: anyOf: - type: string - type: 'null' title: X-Api-Key - name: Authorization in: header required: false schema: anyOf: - type: string - type: 'null' title: Authorization - name: X-Workspace-Id in: header required: false schema: anyOf: - type: string - type: 'null' title: X-Workspace-Id responses: '200': description: Successful Response content: application/json: schema: $ref: '#/components/schemas/SingleResponse_DesignTemplateResponse_' '401': description: Invalid or missing API key. content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '429': description: Rate limit exceeded. content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '404': description: Design template not found. content: application/json: schema: $ref: '#/components/schemas/APIErrorResponse' '422': description: Validation Error content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' components: schemas: APIErrorDetail: properties: code: type: string title: Code description: Machine-readable error code examples: - invalid_param message: type: string title: Message description: Human-readable explanation examples: - title must be between 3 and 200 characters param: anyOf: - type: string - type: 'null' title: Param description: Parameter that caused the error examples: - title type: object required: - code - message title: APIErrorDetail ListResponse_DesignTemplateResponse_: properties: data: items: $ref: '#/components/schemas/DesignTemplateResponse' type: array title: Data pagination: $ref: '#/components/schemas/PaginationMeta' type: object required: - data - pagination title: ListResponse[DesignTemplateResponse] APIError: properties: type: type: string title: Type description: Error category examples: - invalid_request_error code: type: string title: Code description: Machine-readable error code examples: - validation_error message: type: string title: Message description: Human-readable summary examples: - The request body failed validation param: anyOf: - type: string - type: 'null' title: Param description: Top-level parameter that caused the error doc_url: anyOf: - type: string - type: 'null' title: Doc Url description: Link to relevant documentation errors: items: $ref: '#/components/schemas/APIErrorDetail' type: array title: Errors description: Detailed per-field validation errors type: object required: - type - code - message title: APIError ValidationError: properties: loc: items: anyOf: - type: string - type: integer type: array title: Location msg: type: string title: Message type: type: string title: Error Type type: object required: - loc - msg - type title: ValidationError APIErrorResponse: properties: error: $ref: '#/components/schemas/APIError' type: object required: - error title: APIErrorResponse DesignTemplateResponse: properties: object: type: string const: design_template title: Object description: Object type identifier. default: design_template id: type: string title: Id description: Unique design template identifier. examples: - E00CF3AFCF58 name: type: string title: Name description: Human-readable template name. examples: - Dark Mode Welcome Page template_type: type: string title: Template Type description: 'Page type this template applies to: ''welcome_page'', ''status_page'', ''interview_complete_page'', ''interview_page''.' examples: - welcome_page design_config: additionalProperties: true type: object title: Design Config description: 'Design configuration object. Shape varies by template_type. Common fields: background_color, primary_color, font_family, header_text, show_logo, image_url.' examples: - background_color: '#ffffff' font_family: Inter, sans-serif header_text: Welcome to Your Interview primary_color: '#007bff' show_logo: true created_at: type: number title: Created At description: Unix timestamp when the template was created. examples: - 1739612400.0 updated_at: type: number title: Updated At description: Unix timestamp when the template was last updated. examples: - 1739617200.0 type: object required: - id - name - template_type - design_config - created_at - updated_at title: DesignTemplateResponse description: 'A design template controlling the visual appearance of candidate-facing pages. Design templates define colors, fonts, images, and text for pages such as the welcome page, interview page, status page, and interview-complete page.' SingleResponse_DesignTemplateResponse_: properties: data: $ref: '#/components/schemas/DesignTemplateResponse' meta: anyOf: - additionalProperties: true type: object - type: 'null' title: Meta description: Optional metadata. Shape varies by endpoint. type: object required: - data title: SingleResponse[DesignTemplateResponse] HTTPValidationError: properties: detail: items: $ref: '#/components/schemas/ValidationError' type: array title: Detail type: object title: HTTPValidationError PaginationMeta: properties: has_more: type: boolean title: Has More description: Whether more results exist beyond this page total_count: anyOf: - type: integer - type: 'null' title: Total Count description: Total number of results (if available) url: anyOf: - type: string - type: 'null' title: Url description: URL of this resource type: object required: - has_more title: PaginationMeta securitySchemes: ApiKeyAuth: type: apiKey in: header name: X-API-KEY description: API key for authentication. Pass your key in the X-API-KEY header.