- Introduction
- Authentication
- Integrations
- Webhooks
- Guides
- Requests
- Create RequestPOST
- List RequestsGET
- Get RequestGET
- Delete RequestDELETE
- Update RequestPATCH
- Verify RequestPOST
- Close RequestPOST
- Duplicate RequestPOST
- Reject Request (Request Changes)POST
- Send Request ReminderPOST
- List Request RemindersGET
- Get Request Activity LogGET
- List Organization RequestsGET
- Update RequestPATCH
- Delete RequestDELETE
- Request Items
- Templates
- Webhooks
- Files
- Request Attachments
- File Sharing
- E-Signature / Document Forms
- Users
- Cloud Storage
- Branding
- Confirmation Page
- Organization
- RequestItems
- Documents
Initialize File Sharing Session
POST
/shares
How To Share Files via Pigeon
guide for more information.Request
Body Params application/json
title
string
required
recipients
array[object (Recipient) {7}]
required
email
string
optional
firstName
string
optional
lastName
string
optional
phone
string
optional
authMethod
object (AuthenticationMethod)
optional
sendMethod
enum<string>
optional
Allowed values:
DEFAULTEMAILSMSBOTHMULTIPLE
completionOrder
number
optional
expirationDate
string <date-time>
optional
deletionDate
string <date-time>
optional
customMessage
string
optional
sendMethod
enum<string>
optional
Allowed values:
DEFAULTEMAILSMSBOTHMULTIPLE
language
enum<string>
optional
Allowed values:
en-USesarzhfrdehtheiditkoptparu
Example
{
"title": "string",
"recipients": [
{
"email": "string",
"firstName": "string",
"lastName": "string",
"phone": "string",
"authMethod": {
"type": "EMAIL_ACCESS_CODE",
"questionText": "string",
"questionAnswer": "string"
},
"sendMethod": "DEFAULT",
"completionOrder": 0
}
],
"expirationDate": "2019-08-24T14:15:22Z",
"deletionDate": "2019-08-24T14:15:22Z",
"customMessage": "string",
"sendMethod": "DEFAULT",
"language": "en-US"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/shares' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "string",
"recipients": [
{
"email": "string",
"firstName": "string",
"lastName": "string",
"phone": "string",
"authMethod": {
"type": "EMAIL_ACCESS_CODE",
"questionText": "string",
"questionAnswer": "string"
},
"sendMethod": "DEFAULT",
"completionOrder": 0
}
],
"expirationDate": "2019-08-24T14:15:22Z",
"deletionDate": "2019-08-24T14:15:22Z",
"customMessage": "string",
"sendMethod": "DEFAULT",
"language": "en-US"
}'
Responses
🟢200Success
application/json
Body
id
string
required
title
string
required
recipients
array[object (Recipient) {7}]
required
email
string
optional
firstName
string
optional
lastName
string
optional
phone
string
optional
authMethod
object (AuthenticationMethod)
optional
sendMethod
enum<string>
optional
Allowed values:
DEFAULTEMAILSMSBOTHMULTIPLE
completionOrder
number
optional
expirationDate
string <date-time>
optional
deletionDate
string <date-time>
optional
customMessage
string
optional
sendMethod
enum<string>
required
Allowed values:
DEFAULTEMAILSMSBOTHMULTIPLE
language
enum<string>
required
Allowed values:
en-USesarzhfrdehtheiditkoptparu
files
array[object (SharingFiles) {3}]
required
id
string
required
name
string
required
mime
string
required
Example
{
"id": "90c5592b-0488-4457-bd86-58ec49e704b0",
"title": "turpis via talis",
"recipients": [
{
"email": "Coleman19@yahoo.com",
"firstName": "Leda",
"lastName": "Kiehn",
"phoneNum": "(491) 974-7873",
"authMethod": {
"type": "EMAIL_ACCESS_CODE",
"questionText": "minim quis",
"questionAnswer": "eiusmod occaecat et fugiat"
}
},
{
"email": "Rosalyn.Frami74@gmail.com",
"firstName": "Jakob",
"lastName": "Mills",
"phoneNum": "480.255.8475 x13464",
"authMethod": {
"type": "SECURITY_QUESTION",
"questionText": "veniam in labore",
"questionAnswer": "minim ut eu"
}
},
{
"email": "Aniyah.Boehm33@hotmail.com",
"firstName": "Dixie",
"lastName": "Predovic",
"phoneNum": "362-224-3097",
"authMethod": {
"type": "SMS_ACCESS_CODE",
"questionText": "aliqua do ex exercitation labore",
"questionAnswer": "voluptate amet Lorem nisi"
}
}
],
"expirationDate": "2024-10-03T10:04:18.792Z",
"deletionDate": "2024-10-03T10:04:18.792Z",
"customMessage": "Reprehenderit aspicio caste beneficium arca. Vomica aliquam sto adflicto vel varius decumbo sordeo neque adulatio. Aperio adsum tertius demulceo autem versus tutamen denuo.",
"sendMethod": "EMAIL",
"language": "en",
"files": [
{
"id": "aute",
"name": "amplexus aptus asporto",
"mime": "application/pdf"
}
]
}
🟠400Bad Request
Modified at 2024-10-29 16:11:22