TextMaster Upload Properties API

The UploadProperties API from TextMaster — 1 operation(s) for uploadproperties.

Operations 1

POST /v1/clients/upload_properties Get Upload Properties

Documentation

Specifications

Other Resources

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/textmaster-uploadproperties-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

textmaster-uploadproperties-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: TextMaster API v1 Upload Properties API
  version: v1
servers:
- url: https://api.textmaster.com
tags:
- name: UploadProperties
paths:
  /v1/clients/upload_properties:
    post:
      summary: Get Upload Properties
      tags:
      - UploadProperties
      security:
      - oauth2: []
      parameters: []
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                file_name:
                  type: string
                  description: File name for the uploaded file
                hashed_payload:
                  type: string
                  description: SHA256 digest of the file content
              required:
              - file_name
              - hashed_payload
        description: File name for the uploaded file
      responses:
        '200':
          description: File Uploaded
          content:
            application/json:
              examples:
                example_0:
                  value:
                    url: https://storage-proxy.textmaster.com/api-files/uploads/10922fb8-9265-4ef2-92e8-c4177c3b03da/ef9f1ca8/my-file.pdf
                    headers:
                      x-upload-path: uploads/10922fb8-9265-4ef2-92e8-c4177c3b03da/ef9e1ca8/my-file.pdf
                      x-upload-sha256: f2ca1bb6c7e907d06dafe4687e579fce76b37e4e39b7605022da52e6ccc26fd2
                      x-upload-date: 20500102T123456Z
                      Authorization: 78ca271e7f6464961ef3db6903da3d2c51cd4156975322ba678840e12a334de3
              schema:
                $ref: '#/components/schemas/UploadProperties'
components:
  schemas:
    UploadProperties:
      type: object
      properties:
        url:
          type: string
        headers:
          type: object
          properties:
            x-upload-path:
              type: string
            x-upload-sha256:
              type: string
            x-upload-date:
              type: string
              pattern: ^\d{8}T\d{6}Z$
            Authorization:
              type: string
          required:
          - x-upload-path
          - x-upload-sha256
          - x-upload-date
          - Authorization
      required:
      - url
      - headers
  securitySchemes:
    oauth2:
      type: oauth2
      description: OAuth2 Bearer token authentication
      flows:
        authorizationCode:
          authorizationUrl: https://api.textmaster.com/oauth/authorize
          tokenUrl: https://api.textmaster.com/oauth/token
          refreshUrl: https://api.textmaster.com/oauth/token
          scopes:
            preferred_author:manage: Allow read & write access to My Authors
            preferred_author:read: Allow read access to My Authors
            preferred_author:write: Allow write access to My Authors