LogoLogo
Sypht AppHelp CenterMarketplace
  • Introduction
  • Setup
    • Authentication
  • Upload and Extract
    • Upload and Extract (v2)
    • Upload and Extract (v1)
    • File management
  • Workflows (v1)
    • Real-time validation
    • Smart document split
    • Entity matching
  • Workflows (v2)
    • extraction (sypht.extract)
    • Real-time validation (sypht.validate)
    • Smart document split (sypht.split)
  • Field types
    • Line Items
    • Classification fields
    • Signals
    • Values
  • API Docs
    • API Introduction
    • Authentication
      • POST - Authentication Token
    • Upload Document
      • POST - Upload Document
      • POST - Upload JSON
    • Results
      • GET - Document Results
      • GET - Image Results
    • Upload Annotation
      • PUT - Upload Annotation
Powered by GitBook
On this page

Was this helpful?

  1. API Docs

Authentication

OAuth2

We use an Oauth2 authentication flow. Users can create a client_id and client_secret upon signing up with Sypht. Use these to generate your reusable bearer token, which must be included in the Authorization header of each request. You can store and reuse these tokens for up to an hour.

To get a token you need to POST to the tokenUrl with the client_id and grant_type in the request body and colon separated, base64 encoded client_id and client_secret in a basic Authorization header. For example Basic {Base64(client_id:client_secret)}

Security Scheme Type
OAuth2

clientCredentials OAuth Flow

Token URL: https://auth.sypht.com/oauth2/tokenScopes:

  • fileupload:all -

    Provides access to Fileupload Service

  • result:all -

    Provides access to Result Service

  • validate:annotation -

    Upload annotation data for your documents for training purposes.

PreviousAPI IntroductionNextPOST - Authentication Token

Last updated 3 years ago

Was this helpful?