# Fan a draft out as one envelope per row

The draft is the master: its file, fields, and recipient slots (roles, order, access codes) are cloned per row, with each row's names/emails mapped to the slots in order. Every clone goes through the standard send mechanics (tokens, emails, audit, webhooks). The master stays a draft for reuse. At most 100 rows; each row must supply exactly one recipient per slot, every one with an email.

Canonical: https://easerix.com/docs/developers/api/sign/lifecycle/bulkSendDocument

{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}

export default function Layout(props) {
  const { APIPage, OpenAPIPage } = props.components ?? {};
  // "APIPage" is the old name from v10, this allows both for backward compatibility
  const Comp = OpenAPIPage ?? APIPage;
  return (
    <>
      {props.children}
      <Comp document="sign" operations={[{"path":"/v1/documents/{id}/bulk-send","method":"post"}]} />
    </>
  );
}
