# /organizations/{organizationId}/subaccounts/products

Get a list of products available for provisioning

# OpenAPI definition

```json
{
  "openapi": "3.1.0",
  "info": {
    "title": "Partner API",
    "version": "1"
  },
  "servers": [
    {
      "url": "https://admin.formstack.com/api/v1",
      "description": "Partner API"
    }
  ],
  "paths": {
    "/organizations/{organizationId}/subaccounts/products": {
      "get": {
        "tags": [
          "PartnerApi"
        ],
        "description": "Get a list of products available for provisioning",
        "operationId": "listSubaccountProvisioningAvailableProducts",
        "parameters": [
          {
            "name": "organizationId",
            "in": "path",
            "description": "ID of the parent organization",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid",
              "example": "b443d63c-3e37-11f1-8898-0242ac000003"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "products list",
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "products": {
                      "$ref": "#/components/schemas/ProductsAvailable"
                    }
                  },
                  "type": "object"
                }
              }
            }
          },
          "404": {
            "description": "Organization could not be found"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ]
      }
    }
  },
  "components": {
    "schemas": {
      "Product": {
        "properties": {
          "handle": {
            "type": "string",
            "readOnly": true,
            "example": "p:forms-teams"
          },
          "name": {
            "type": "string",
            "readOnly": true,
            "example": "Forms Teams plan"
          }
        },
        "type": "object"
      },
      "ProductsAvailable": {
        "properties": {
          "plans": {
            "title": "plans",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Product"
            },
            "example": [
              {
                "handle": "p:forms-teams",
                "name": "Forms Teams plan"
              }
            ]
          },
          "extras": {
            "title": "extras",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Product"
            },
            "example": [
              {
                "handle": "c:forms-senders",
                "name": "Extra senders"
              }
            ]
          },
          "addons": {
            "title": "addons",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Product"
            },
            "example": []
          }
        },
        "type": "object"
      }
    },
    "securitySchemes": {
      "bearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "description": "Bearer authentication"
      }
    }
  },
  "tags": [
    {
      "name": "PartnerApi",
      "description": "PartnerApi"
    }
  ]
}
```