> For the complete documentation index, see [llms.txt](https://2sign-co-il.gitbook.io/2sign.co.il-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://2sign-co-il.gitbook.io/2sign.co.il-docs/signature-routine-tasks/create-a-signature-routine-without-a-group.md).

# Create a Signature Routine Without a Group

Use this endpoint to send a document for signing by multiple recipients without setting up a Group in advance. Signers are defined directly in the request via phone number or email.

{% hint style="info" %}
Use this when you have a one-time set of signers and don't want to manage groups in the system. For recurring groups of signers, use Create a Signature Routine with a `GroupId` instead.
{% endhint %}

Header

```
Content-Type:multipart/form-data
Authorization:'Bearer token_value_from_login'
```

```json
Request Body
{
  "TaskSubject": "Signature Routine Without Group",
  "IsSendOnCreation": true,
  "SignatureRoutine": true,
  "SignatureRoutineAsync": true,
  "TemplateId": 1612,
  "PdfGuid": "9ca24c2b-d2e2-47cd-8efb-28c9382ec6c6",
  "TaskGuid": "9ca24c2b-d2e2-47cd-8efb-28c9382ec6c6",
  "SignaturePositions": [
    {
      "X": 156.21,
      "Y": 14.84,
      "Width": 100.0,
      "Height": 50.0,
      "Page": 1,
      "SignaturePositionTypeId": 1,
      "SignaturePositionStageTypeId": 0,
      "SignaturePositionFieldType": 0,
      "IsMultipleOptionsCheckbox": false,
      "PositionTextContent": "",
      "CheckBoxSelected": false,
      "IsSignatureRoutine": true,
      "SignatureRoutineSignerNumber": 1,
      "Emails": "signer1@example.com",
      "Phones": "0501234567"
    },
    {
      "X": 17.05,
      "Y": 25.68,
      "Width": 100.0,
      "Height": 50.0,
      "Page": 1,
      "SignaturePositionTypeId": 1,
      "SignaturePositionStageTypeId": 0,
      "SignaturePositionFieldType": 0,
      "IsMultipleOptionsCheckbox": false,
      "PositionTextContent": "",
      "CheckBoxSelected": false,
      "IsSignatureRoutine": true,
      "SignatureRoutineSignerNumber": 2,
      "Emails": "signer2@example.com",
      "Phones": "0507654321"
    }
  ]
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://2sign-co-il.gitbook.io/2sign.co.il-docs/signature-routine-tasks/create-a-signature-routine-without-a-group.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
