zendesk-messaging-client
    Preparing search index...

    Type Alias AuthorizeData

    type AuthorizeData = {
        body?: never;
        path?: never;
        query: {
            client_id: string;
            redirect_uri?: string;
            response_type: string;
            state?: string;
        };
        url: "/oauth/authorize";
    }
    Index

    Properties

    Properties

    body?: never
    path?: never
    query: {
        client_id: string;
        redirect_uri?: string;
        response_type: string;
        state?: string;
    }

    Type declaration

    • client_id: string

      Your integration’s unique identifier

    • Optionalredirect_uri?: string

      You may pass in a redirect_uri to determine which URI the response is redirected to. This URI must be contained in the list configured by your integration. If this option is not passed, the first URI present in the list will be used.

    • response_type: string

      For now the only acceptable value is code.

    • Optionalstate?: string

      You may pass in any arbitrary string value here which will be returned to you along with the code via browser redirect.

    url: "/oauth/authorize"