Auth Structure
Get Auth Structure
Get the authentication field structure for an app.
GET
Return a flat description of the auth fields required for each of an app’s supported auth types (
oauth2, keybased, …). Use this to build a credential-entry form dynamically, or to know exactly which fields to send to Save Key Credentials or Migrate Token.
Each field’s value is either a type string (e.g. "string") or an object {type, required: false} for optional fields.
This route has no authentication — no API key or session token is required.
Path Parameters
The app slug.Example:
hubspot, netsuiteResponse
- 200 OK
- 500 Schema Not Found
An object keyed by auth type. Each auth type maps to its field definitions, where a value is either a type string or
{type, required} for optional fields.