> ## Documentation Index
> Fetch the complete documentation index at: https://developer.lemlist.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Unsubscribe

export const SnippetObjectScreenshot = ({objectName, filePath = null, extension = 'png'}) => {
  return <>
      <Frame caption={`${objectName[0].toUpperCase() + objectName.slice(1).toLowerCase()} screenshot from the lemlist app interface`}>
        <img src={`/images/objects-definitions/${filePath ?? objectName.toLowerCase()}.${extension}`} alt={`${objectName[0].toUpperCase() + objectName.slice(1).toLowerCase()} screenshot from the lemlist app interface`} />
      </Frame>
    </>;
};

<Warning>
  This object definition applies to **legacy** unsubscribe endpoints. The new endpoints use different response schemas — see [Variables](/api-reference/endpoints/unsubscribes/list-unsubscribed-variables) and [Contacts](/api-reference/endpoints/unsubscribes/get-contact-subscription-status).
</Warning>

<SnippetObjectScreenshot objectName="unsubscribes" />
