> ## 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.

# In-person signing

> Let a signer complete a Box Sign request on the requester's device, and cycle through several in-person signers in one session.

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>;
};

Set `is_in_person` to `true` when the requester and signer are together and the
signer should complete the request on the requester's device. Set this on the
signer when you
[create the request](/guides/box-sign/create-sign-request).

Also set `embed_url_external_user_id` so the response includes `embed_url` and
`iframeable_embed_url`. Your app opens or embeds that URL to start the signing
session. For more information, see
[Embed the signing client](/guides/box-sign/how-signers-get-the-request#embed-the-signing-client).

<Frame>
  <img src="https://mintcdn.com/box/isjmNzuG7xfW57th/images/guides/box-sign/sign-flow-in-person.png?fit=max&auto=format&n=isjmNzuG7xfW57th&q=85&s=60c8ef4e37581f8002853c1aa9e1c74a" alt="In-person signing cycles through each signer" width="1920" height="1080" data-path="images/guides/box-sign/sign-flow-in-person.png" />
</Frame>

## Create an in-person request

```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 '{
       "template_id": "ee9a689e-96b6-4076-92a0-b9b765eb09ca",
       "parent_folder": {
         "type": "folder",
         "id": "0987654321"
       },
       "signers": [
         {
           "email": "signer-a@example.com",
           "role": "signer",
           "is_in_person": true,
           "embed_url_external_user_id": "1234"
         },
         {
           "email": "signer-b@example.com",
           "role": "signer",
           "is_in_person": true
         }
       ]
     }'
```

The first in-person signer gets the `embed_url` and `iframeable_embed_url`.
Later in-person signers in the same session do not need their own
`embed_url_external_user_id`.

## Several signers in one session

After the first in-person signer finishes, the interface moves to the next
in-person signer. The completed document is emailed to each signer.

<Frame>
  <img src="https://mintcdn.com/box/isjmNzuG7xfW57th/images/guides/box-sign/sign-inperson-first.png?fit=max&auto=format&n=isjmNzuG7xfW57th&q=85&s=7864ece5c1e0040cf90f94393e205c7c" alt="First in-person signer in the Box Sign client" width="3958" height="2334" data-path="images/guides/box-sign/sign-inperson-first.png" />
</Frame>

<Frame>
  <img src="https://mintcdn.com/box/isjmNzuG7xfW57th/images/guides/box-sign/sign-inperson-second.png?fit=max&auto=format&n=isjmNzuG7xfW57th&q=85&s=bb7348bf7091d22965a992d7c2aa4447" alt="Second in-person signer after the first signer finishes" width="3958" height="2334" data-path="images/guides/box-sign/sign-inperson-second.png" />
</Frame>

<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("Deliver the request to signers"), href: "/guides/box-sign/how-signers-get-the-request", badge: "GUIDE" },
{ label: translate("Multiple signers and signing order"), href: "/guides/box-sign/multiple-signers", badge: "GUIDE" }
]}
/>
