@contio/partner-sdk - v1.7.1
    Preparing search index...

    Interface CredentialRotationResponse

    Response from credential rotation

    interface CredentialRotationResponse {
        credential_type: CredentialType;
        grace_period_ends_at?: string;
        new_credential: string;
        rollback_expires_at?: string;
        rollback_token?: string;
    }
    Index

    Properties

    credential_type: CredentialType
    grace_period_ends_at?: string

    When the grace period ends After this time, only the new credential will work

    NOTE: Webhook secrets do not have grace periods (this will be null/undefined)

    new_credential: string

    The new credential value IMPORTANT: Save this securely - it's only shown once!

    rollback_expires_at?: string

    When the rollback token expires

    NOTE: Webhook secrets do not support rollback (this will be null/undefined)

    rollback_token?: string

    Emergency rollback token (valid for 1 hour) Single-use token to revert the rotation if needed

    NOTE: Webhook secrets do not support rollback (this will be null/undefined)