# Create a signing. This endpoint allows for the creation of a new signing, including the ability to add a webhook callback URL. **POST /api/v1/signings** Sample request: POST /signings Request Body: ```json { "Id": "example-guid-1", "Name": "Test Layout", "AccountId": "example-guid-2", "StatusId": 1, "IsOrdered": false, "DateCreated": "2023-04-20T02:59:00Z", "LastModified": "2023-04-21T02:59:00Z", "ExpirationDate": "2023-04-26T02:59:00Z", "IdPosition": 1, "ReminderDay": 5, "ReminderHour": 2, "TransactionId": "example-guid-3", "TechnologyProvider": "TechProviderName", "CallbackUrl": "https://yourcallbackurl.com", "Files": ["File1", "File2"], "FilesWithStrikeoutsDisabled": ["FileName1", "FileName2"] } ``` Note: Replace "example-guid-1", "example-guid-2", etc., with actual GUID values and "File1", "File2" with your file objects. ## Servers - https://api.lwolf.com/authentisign: https://api.lwolf.com/authentisign () ## Parameters ### Headers - **externalId** (string(uuid)) The external identifier associated with the signing. ### Body: multipart/form-data (object) - **Files** (array[string(binary)]) - **FilesWithStrikeoutsDisabled** (array[string]) - **Fields** (object) - **Participants** (array[object]) - **Id** (string(uuid)) - **Name** (string) - **AccountId** (string(uuid)) - **StatusId** (integer(int32)) - **IsOrdered** (boolean) - **DateCreated** (string(date-time)) - **LastModified** (string(date-time)) - **ExpirationDate** (string(date-time)) - **IdPosition** (integer(int32)) - **ReminderDay** (integer(int32)) - **ReminderHour** (integer(int32)) - **TransactionId** (string(uuid)) - **TechnologyProvider** (string) - **CallbackUrl** (string) - **LayoutId** (string(uuid)) - **ApplyLayout** (boolean) ## Responses ### 200 Success ### default Error #### Body: application/json (object) - **code** (integer(int32)) - **message** (string | null) - **details** (array[string] | null) [Powered by Bump.sh](https://bump.sh)