openapi: 3.1.0 info: title: Aha! Account backups Strategic positionings API version: 1.0.0 description: Complete API documentation for Aha! generated from actual test responses contact: name: Aha! Support url: https://www.aha.io/support servers: - url: https://{account-domain}.aha.io/api/v1 description: Aha! API Server variables: account-domain: description: Your Aha! account domain default: company security: - OAuth2: [] - ApiKeyAuth: [] - CookieAuth: [] tags: - name: Strategic positionings paths: /api/v1/strategy_positions: get: summary: List strategic positionings description: null tags: - Strategic positionings parameters: [] responses: '200': description: Successful operation headers: Content-Type: description: application/json; charset=utf-8 schema: type: string content: application/json; charset=utf-8: schema: $ref: '#/components/schemas/StrategicpositioningsGetResponse' example: strategy_positions: - id: '51832287' name: Aha! strategic positioning model canvas kind: Positioning components: - id: 260808894 name: Value Proposition description: '' url: http://company.aha.io/business_models/51832287 resource: http://company.aha.io/business_models/51832287 project: id: '131414752' reference_prefix: PRJ1 name: Project 1 product_line: false created_at: '2019-01-01T00:00:00.000Z' workspace_type: product_workspace url: http://company.aha.io/projects/PRJ1 - id: '453528824' name: Aha! strategic positioning model canvas kind: Positioning components: - id: 37485938 name: Growth opportunity description: '' url: http://company.aha.io/business_models/453528824 resource: http://company.aha.io/business_models/453528824 project: id: '517761884' reference_prefix: PRJ2 name: Project 2 product_line: false created_at: '2019-01-01T00:00:00.000Z' workspace_type: product_workspace url: http://company.aha.io/projects/PRJ2 pagination: total_records: 2 total_pages: 1 current_page: 1 security: - OAuth2: [] - ApiKeyAuth: [] - CookieAuth: [] /api/v1/strategy_positions/{id}: get: summary: Get a specific strategic positioning description: null tags: - Strategic positionings parameters: - name: id in: path required: true schema: type: string description: Id identifier responses: '200': description: Successful operation headers: Content-Type: description: application/json; charset=utf-8 schema: type: string content: application/json; charset=utf-8: schema: $ref: '#/components/schemas/StrategicpositioningsGetResponse' example: strategy_positioning: id: '453528824' name: Aha! strategic positioning model canvas kind: Positioning components: - id: 37485938 name: Growth opportunity description: '' url: http://company.aha.io/business_models/453528824 resource: http://company.aha.io/business_models/453528824 project: id: '517761884' reference_prefix: PRJ2 name: Project 2 product_line: false created_at: '2019-01-01T00:00:00.000Z' workspace_type: product_workspace url: http://company.aha.io/projects/PRJ2 security: - OAuth2: [] - ApiKeyAuth: [] - CookieAuth: [] components: schemas: StrategicpositioningsGetResponse: type: object properties: strategy_positioning: type: object properties: id: type: string example: '453528824' name: type: string example: Aha! strategic positioning model canvas kind: type: string example: Positioning components: type: array items: type: object properties: id: type: string name: type: string description: type: string example: id: 37485938 name: Growth opportunity description: '' example: - id: 37485938 name: Growth opportunity description: '' url: type: string example: http://company.aha.io/business_models/453528824 resource: type: string example: http://company.aha.io/business_models/453528824 project: type: object properties: id: type: string example: '517761884' reference_prefix: type: string example: PRJ2 name: type: string example: Project 2 product_line: type: boolean example: false created_at: type: string example: '2019-01-01T00:00:00.000Z' workspace_type: type: string example: product_workspace url: type: string example: http://company.aha.io/projects/PRJ2 example: id: '517761884' reference_prefix: PRJ2 name: Project 2 product_line: false created_at: '2019-01-01T00:00:00.000Z' workspace_type: product_workspace url: http://company.aha.io/projects/PRJ2 example: id: '453528824' name: Aha! strategic positioning model canvas kind: Positioning components: - id: 37485938 name: Growth opportunity description: '' url: http://company.aha.io/business_models/453528824 resource: http://company.aha.io/business_models/453528824 project: id: '517761884' reference_prefix: PRJ2 name: Project 2 product_line: false created_at: '2019-01-01T00:00:00.000Z' workspace_type: product_workspace url: http://company.aha.io/projects/PRJ2 example: strategy_positioning: id: '453528824' name: Aha! strategic positioning model canvas kind: Positioning components: - id: 37485938 name: Growth opportunity description: '' url: http://company.aha.io/business_models/453528824 resource: http://company.aha.io/business_models/453528824 project: id: '517761884' reference_prefix: PRJ2 name: Project 2 product_line: false created_at: '2019-01-01T00:00:00.000Z' workspace_type: product_workspace url: http://company.aha.io/projects/PRJ2 securitySchemes: OAuth2: type: oauth2 description: OAuth2 authentication with bearer tokens flows: authorizationCode: authorizationUrl: https://{account-domain}.aha.io/oauth/authorize tokenUrl: https://{account-domain}.aha.io/oauth/token scopes: {} ApiKeyAuth: type: http scheme: bearer description: API key authentication using Bearer token in Authorization header. Generate API keys at https://secure.aha.io/settings/api_keys CookieAuth: type: apiKey in: cookie name: session description: Cookie-based authentication for web browser integration