Member Junction
    Preparing search index...

    Credentials the REST client constructs the twilio SDK with. Resolved upstream via MJ config — never inlined.

    interface TwilioRestCredentials {
        AccountSid: string;
        ApiKeySecret?: string;
        ApiKeySid?: string;
        AuthToken?: string;
    }
    Index

    Properties

    AccountSid: string

    Twilio Account SID (AC…). Always required (used directly, or as the accountSid option under API-key auth).

    ApiKeySecret?: string

    API Key secret — paired with ApiKeySid.

    ApiKeySid?: string

    API Key SID (SK…) — preferred over the auth token for REST auth when present (with ApiKeySecret).

    AuthToken?: string

    Account auth token — used when no API key pair is supplied. Also the HMAC key for webhook signature verification.