FileMaker Data API Tools API - v1.2.0
    Preparing search index...

    Interface ProxyProfilePayload

    Payload sent to the proxy on every action.

    Includes only the fields the proxy needs to route + authenticate against FileMaker. The human-readable name is intentionally omitted: proxies are configured per-environment and identify profiles by id. Trimming the payload reduces what a compromised proxy sees in its logs.

    Exported for testing.

    interface ProxyProfilePayload {
        id: string;
        database: string;
        serverUrl: string;
        apiBasePath?: string;
        apiVersionPath?: string;
    }
    Index

    Properties

    id: string
    database: string
    serverUrl: string
    apiBasePath?: string
    apiVersionPath?: string