Aha.io Ideas portal user subscriptions API

The Ideas portal user subscriptions API from Aha.io — 2 operation(s) for ideas portal user subscriptions.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/aha-ideas-portal-user-subscriptions-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

aha-ideas-portal-user-subscriptions-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Aha! Account backups Ideas portal user subscriptions 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: Ideas portal user subscriptions
paths:
  /api/v1/idea_portals/{idea_portal_id}/portal_users/{portal_user_id}/portal_user_subscriptions:
    get:
      summary: List a portal user's preferences for the portal summary email
      description: null
      tags:
      - Ideas portal user subscriptions
      parameters:
      - name: idea_portal_id
        in: path
        required: true
        schema:
          type: string
        description: IdeaPortalId identifier
      - name: portal_user_id
        in: path
        required: true
        schema:
          type: string
        description: PortalUserId 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/IdeasportalusersubscriptionsGetResponse'
              example:
                portal_user_subscriptions:
                  preferences:
                  - type: project
                    id: 131414752
                  - type: category
                    id: 251347229
      security:
      - OAuth2: []
      - ApiKeyAuth: []
      - CookieAuth: []
    post:
      summary: Set a portal user's preferences to specific project and category updates
      description: null
      tags:
      - Ideas portal user subscriptions
      parameters:
      - name: idea_portal_id
        in: path
        required: true
        schema:
          type: string
        description: IdeaPortalId identifier
      - name: portal_user_id
        in: path
        required: true
        schema:
          type: string
        description: PortalUserId 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/IdeasportalusersubscriptionsPostResponse'
              example:
                portal_user_subscriptions:
                  preferences:
                  - type: category
                    id: 251347229
                  - type: category
                    id: 552935478
      security:
      - OAuth2: []
      - ApiKeyAuth: []
      - CookieAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IdeasportalusersubscriptionsPostRequest'
            example:
              portal_user_subscriptions:
                preferences:
                - type: project
                  id: 131414752
                - type: category
                  id: 251347229
  /api/v1/idea_portals/{idea_portal_id}/portal_users/{portal_user_id}/portal_user_subscriptions/subscribe_to_all:
    post:
      summary: Subscribe a portal user to updates from all projects and categories
      description: null
      tags:
      - Ideas portal user subscriptions
      parameters:
      - name: idea_portal_id
        in: path
        required: true
        schema:
          type: string
        description: IdeaPortalId identifier
      - name: portal_user_id
        in: path
        required: true
        schema:
          type: string
        description: PortalUserId identifier
      responses:
        '204':
          description: No content - operation successful
      security:
      - OAuth2: []
      - ApiKeyAuth: []
      - CookieAuth: []
components:
  schemas:
    IdeasportalusersubscriptionsPostResponse:
      type: object
      properties:
        portal_user_subscriptions:
          type: object
          properties:
            preferences:
              type: array
              items:
                type: object
                properties:
                  type:
                    type: string
                  id:
                    type: string
                example:
                  type: category
                  id: 251347229
              example:
              - type: category
                id: 251347229
              - type: category
                id: 552935478
          example:
            preferences:
            - type: category
              id: 251347229
            - type: category
              id: 552935478
      example:
        portal_user_subscriptions:
          preferences:
          - type: category
            id: 251347229
          - type: category
            id: 552935478
    IdeasportalusersubscriptionsPostRequest:
      type: object
      properties:
        portal_user_subscriptions:
          type: object
          properties:
            preferences:
              type: array
              items:
                type: object
                properties:
                  type:
                    type: string
                    example: project
                  id:
                    type: integer
                    example: 131414752
                example:
                  type: project
                  id: 131414752
              example:
              - type: project
                id: 131414752
              - type: category
                id: 251347229
          example:
            preferences:
            - type: project
              id: 131414752
            - type: category
              id: 251347229
      example:
        portal_user_subscriptions:
          preferences:
          - type: project
            id: 131414752
          - type: category
            id: 251347229
    IdeasportalusersubscriptionsGetResponse:
      type: object
      properties:
        portal_user_subscriptions:
          type: object
          properties:
            preferences:
              type: array
              items:
                type: object
                properties:
                  type:
                    type: string
                  id:
                    type: string
                example:
                  type: project
                  id: 131414752
              example:
              - type: project
                id: 131414752
              - type: category
                id: 251347229
          example:
            preferences:
            - type: project
              id: 131414752
            - type: category
              id: 251347229
      example:
        portal_user_subscriptions:
          preferences:
          - type: project
            id: 131414752
          - type: category
            id: 251347229
  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