Hint Health · Schema

OAuth

Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans

Properties

Name Type Description
grant_type string
code string
activate boolean Defaults to true. Pass false to keep the integration pending after token exchange.
View JSON Schema on GitHub

JSON Schema

platform-oauthscontroller-tokens_body.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.hint.com/schemas/platform-oauthscontroller-tokens_body",
  "title": "OAuth",
  "type": "object",
  "properties": {
    "grant_type": {
      "type": "string"
    },
    "code": {
      "type": "string"
    },
    "activate": {
      "type": "boolean",
      "description": "Defaults to true. Pass false to keep the integration pending after token exchange."
    }
  },
  "required": [
    "grant_type",
    "code"
  ]
}