Slope Software DecrementTables API

The DecrementTables API from Slope Software — 2 operation(s) for decrementtables.

Operations 3

GET /api/v1/DecrementTables/{DecrementTableId} Get a decrement table. #
DELETE /api/v1/DecrementTables/{DecrementTableId} Delete a decrement table. #
POST /api/v1/DecrementTables Create a decrement table using an existing file. #

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/slope-software-decrementtables-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

slope-software-decrementtables-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Slope Arrays Decrement Tables API
  version: '1.0'
servers:
- url: https://api.slopesoftware.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: DecrementTables
paths:
  /api/v1/DecrementTables/{DecrementTableId}:
    get:
      tags:
      - DecrementTables
      summary: Get a decrement table.
      operationId: GetDecrementTableById
      parameters:
      - name: DecrementTableId
        in: path
        description: Decrement Table Id
        required: true
        schema:
          type: integer
          description: Decrement Table Id
          format: int32
      - name: Fields
        in: query
        description: "Optional parameter to filter the top-level fields that are returned. \nThe list must be in CSV format. Example: field1,field2,field3"
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetDecrementTableResponseV1'
        '201':
          description: Created
        '400':
          description: Bad Request
        '403':
          description: Not Allowed To Access
        '429':
          description: Too Many Requests
        '404':
          description: Not Found
        '401':
          description: Unauthorized
      security:
      - API Token: []
    delete:
      tags:
      - DecrementTables
      summary: Delete a decrement table.
      operationId: DeleteDecrementTableById
      parameters:
      - name: DecrementTableId
        in: path
        description: Decrement Table Id
        required: true
        schema:
          type: integer
          description: Decrement Table Id
          format: int32
      responses:
        '200':
          description: OK
        '201':
          description: Created
        '400':
          description: Bad Request
        '403':
          description: Not Allowed To Access
        '429':
          description: Too Many Requests
        '404':
          description: Not Found
        '401':
          description: Unauthorized
      security:
      - API Token: []
  /api/v1/DecrementTables:
    post:
      tags:
      - DecrementTables
      summary: Create a decrement table using an existing file.
      operationId: CreateDecrementTable
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateDecrementTableRequestV1'
          text/json:
            schema:
              $ref: '#/components/schemas/CreateDecrementTableRequestV1'
          application/*+json:
            schema:
              $ref: '#/components/schemas/CreateDecrementTableRequestV1'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateOrUpdateDecrementTableResponseV1'
        '201':
          description: Created
        '400':
          description: Bad Request
        '403':
          description: Not Allowed To Access
        '429':
          description: Too Many Requests
        '404':
          description: Not Found
        '401':
          description: Unauthorized
        '409':
          description: Decrement table name already exists
      security:
      - API Token: []
components:
  schemas:
    SelectPeriodFrequencyType:
      enum:
      - Annual
      - Monthly
      type: string
    MortalityTableType:
      enum:
      - Standard
      - Improving
      - SelectAndUltimate
      type: string
    CreateDecrementTableRequestV1:
      type: object
      properties:
        fileId:
          type:
          - integer
          - 'null'
          description: File ID
          format: int32
        filePath:
          type:
          - string
          - 'null'
          description: File Path
        fileVersion:
          type:
          - integer
          - 'null'
          description: File Version
          format: int32
        delimiter:
          type:
          - string
          - 'null'
          description: Delimiter
        excelSheetName:
          type:
          - string
          - 'null'
          description: Excel Sheet Name
        modelId:
          type: integer
          description: Model ID
          format: int32
        name:
          type:
          - string
          - 'null'
          description: Decrement Table Name
        decrementTableType:
          $ref: '#/components/schemas/MortalityTableType'
        improvementBaseYear:
          type:
          - integer
          - 'null'
          description: Improvement Base Year
          format: int32
        selectPeriodFrequency:
          $ref: '#/components/schemas/SelectPeriodFrequencyType'
      additionalProperties: false
    GetDecrementTableResponseV1:
      type: object
      properties:
        id:
          type: integer
          description: Decrement Table ID
          format: int32
        modelId:
          type: integer
          description: Model ID
          format: int32
        name:
          type:
          - string
          - 'null'
          description: Decrement Table Name
        description:
          type:
          - string
          - 'null'
          description: Decrement Table Description
        decrementTableType:
          $ref: '#/components/schemas/MortalityTableType'
        improvementBaseYear:
          type:
          - integer
          - 'null'
          description: Improvement Base Year
          format: int32
        selectPeriodFrequency:
          $ref: '#/components/schemas/SelectPeriodFrequencyType'
        selectPeriod:
          type:
          - integer
          - 'null'
          description: Select Period
          format: int32
        version:
          type: integer
          description: Decrement Table Version
          format: int32
        isLatestVersion:
          type: boolean
          description: Is Latest Version?
      additionalProperties: false
    CreateOrUpdateDecrementTableResponseV1:
      type: object
      properties:
        id:
          type: integer
          description: Decrement Table ID
          format: int32
        name:
          type:
          - string
          - 'null'
          description: Decrement Table Name
        type:
          $ref: '#/components/schemas/MortalityTableType'
        version:
          type: integer
          description: Decrement Table Version
          format: int32
      additionalProperties: false
  securitySchemes:
    API_Token:
      type: http
      description: The API token received from the Authorize endpoint goes here.
      scheme: Bearer
      bearerFormat: JWT