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

# Multiple signers and signing order

> Assign signer, approver, and final copy reader roles, and control the order in which Box Sign notifies each person.

export const MultiRelatedLinks = ({sections = []}) => {
  if (!sections || sections.length === 0) {
    return null;
  }
  return <div className="space-y-8">
      {sections.map((section, index) => <RelatedLinks key={index} title={section.title} items={section.items} />)}
    </div>;
};

export const RelatedLinks = ({title, items = []}) => {
  const getBadgeClass = badge => {
    if (!badge) return "badge-default";
    const badgeType = badge.toLowerCase().replace(/\s+/g, "-");
    return `badge-${badge === "ガイド" ? "guide" : badgeType}`;
  };
  if (!items || items.length === 0) {
    return null;
  }
  return <div className="my-8">
      {}
      <h3 className="text-sm font-bold uppercase tracking-wider mb-4">{title}</h3>

      {}
      <div className="flex flex-col gap-3">
        {items.map((item, index) => <a key={index} href={item.href} className="py-2 px-3 rounded related_link hover:bg-[#f2f2f2] dark:hover:bg-[#111827] flex items-center gap-3 group no-underline hover:no-underline border-b-0">
            {}
            <span className={`px-2 py-1 rounded-full text-xs font-semibold uppercase tracking-wide flex-shrink-0 ${getBadgeClass(item.badge)}`}>
              {item.badge}
            </span>

            {}
            <span className="text-base">{item.label}</span>
          </a>)}
      </div>
    </div>;
};

A Box Sign request can include several people, each with a different job. Set a
role for every person, and use `order` when they need to act one after another.
Set both when you
[create the request](/guides/box-sign/create-sign-request).

## Signer roles

Each person needs a role: `signer`, `approver`, or `final_copy_reader`.

| Role                | What they do                                                                              |
| ------------------- | ----------------------------------------------------------------------------------------- |
| `signer`            | Adds data to the document: signature, initials, date, text, checkboxes, or radio buttons. |
| `approver`          | Approves the request before preparation (if enabled) and before any signer is notified.   |
| `final_copy_reader` | Does not sign. Receives a copy of the signed document and [signing log][log].             |

If you do not give the requester a role, Box Sign adds them as
`final_copy_reader`.

Approvers and final copy readers cannot have signature properties. If you assign
signature properties to them, Box Sign changes their role to `signer`. In the
prepare UI, each signer has a color so you can see which fields belong to which
person.

For more detail on what each role can do, see the [roles for signers][roles]
support article.

## Signing order

If you omit `order`, Box Sign notifies every signer at the same time. If you set
`order`, only the lowest number is notified first. After they sign, the next
group is notified. Signers that share an `order` value receive the request at the
same time.

Box Sign adds a new file version to `parent_folder` as each signer completes. A
decline stops the request for everyone who has not signed yet, and the request
status becomes `declined`.

<Frame border center shadow>
  <div className="w-full h-full bg-[#FFFFFF] p-2 rounded flex items-center justify-center">
    <img src="https://mintcdn.com/box/KBEcg4yicgc_HMRY/images/guides/box-sign/multiple_signer_flow.png?fit=max&auto=format&n=KBEcg4yicgc_HMRY&q=85&s=2f354021a36958839187c4f4f1a23b91" alt="Multiple signer flow" width="2608" height="1200" data-path="images/guides/box-sign/multiple_signer_flow.png" />
  </div>
</Frame>

```sh theme={null}
curl -i -X POST "https://api.box.com/2.0/sign_requests" \
     -H "authorization: Bearer <ACCESS_TOKEN>" \
     -H "content-type: application/json" \
     -d '{
       "is_document_preparation_needed": true,
       "parent_folder": {
         "type": "folder",
         "id": "0987654321"
       },
       "source_files": [
         {
           "type": "file",
           "id": "123456789"
         }
       ],
       "signers": [
         {
           "email": "institution@example.com",
           "role": "signer",
           "order": 1
         },
         {
           "email": "student@example.com",
           "role": "signer",
           "order": 2
         },
         {
           "email": "dean@example.com",
           "role": "approver"
         },
         {
           "email": "legal@example.com",
           "role": "final_copy_reader"
         }
       ]
     }'
```

<Frame>
  <img src="https://mintcdn.com/box/isjmNzuG7xfW57th/images/guides/box-sign/sign-flow-multi-role.png?fit=max&auto=format&n=isjmNzuG7xfW57th&q=85&s=71eab6164738c4e1d23e4c317a536525" alt="Flow with an approver, two signers, and a final copy reader" width="1920" height="1080" data-path="images/guides/box-sign/sign-flow-multi-role.png" />
</Frame>

In this example, the dean approves first, then the institution signs, then the
student signs, and legal receives the final copy.

<Note>
  When you create the request from a template, keep signer order in the `POST`
  body the same as the order on the template so the correct person gets each
  field. See [Create a sign request with a template](/guides/box-sign/document-types/sign-templates).
</Note>

[roles]: https://support.box.com/hc/en-us/articles/4404105660947-Roles-for-signers

[log]: https://support.box.com/hc/en-us/articles/4404095202579-Viewing-the-signing-log

<RelatedLinks
  title="RELATED APIS"
  items={[
{ label: translate("Create Box Sign request"), href: "/reference/post-sign-requests", badge: "POST" }
]}
/>

<RelatedLinks
  title="RELATED GUIDES"
  items={[
{ label: translate("Create Box Sign request"), href: "/guides/box-sign/create-sign-request", badge: "GUIDE" },
{ label: translate("Verify signer identity"), href: "/guides/box-sign/signer-verification", badge: "GUIDE" },
{ label: translate("Create a sign request with a template"), href: "/guides/box-sign/document-types/sign-templates", badge: "GUIDE" }
]}
/>
