- 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
Update Organization Settings
PATCH
/organizations/{id}/settings
Request
Path Params
id
string
required
Body Params application/json
branding
object (OrganizationBranding)
optional
colors
object
optional
logoUrl
string
optional
logoWidth
integer
optional
defaultStorageProvider
enum<string>
optional
Allowed values:
GOOGLE_DRIVEPIGEON
sharedDashboard
boolean
optional
sharedContacts
boolean
optional
convertImagesToPdf
boolean
optional
dueDateGracePeriod
integer
optional
defaultVDSPeriod
integer
optional
maxVDSPeriod
integer
optional
defaultSendMethod
enum<string>
optional
Allowed values:
DEFAULTEMAILSMSBOTHMULTIPLE
defaultAuthMethod
object (AuthenticationMethod)
optional
type
enum<string>
required
Allowed values:
EMAIL_ACCESS_CODESMS_ACCESS_CODESECURITY_QUESTION
questionText
string
optional
questionAnswer
string
optional
disallowedFileExtensions
array[string]
optional
displayPostSignatureConfirmation
boolean
optional
outgoingEmailAddress
string <email>
optional
Example
{
"branding": {
"colors": {
"primary": "string"
},
"logoUrl": "string",
"logoWidth": 0
},
"defaultStorageProvider": "GOOGLE_DRIVE",
"sharedDashboard": true,
"sharedContacts": true,
"convertImagesToPdf": true,
"dueDateGracePeriod": 0,
"defaultVDSPeriod": 0,
"maxVDSPeriod": 0,
"defaultSendMethod": "DEFAULT",
"defaultAuthMethod": {
"type": "EMAIL_ACCESS_CODE",
"questionText": "string",
"questionAnswer": "string"
},
"disallowedFileExtensions": [
"string"
],
"displayPostSignatureConfirmation": true,
"outgoingEmailAddress": "user@example.com"
}
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 PATCH '/organizations//settings' \
--header 'Content-Type: application/json' \
--data-raw '{
"branding": {
"colors": {
"primary": "string"
},
"logoUrl": "string",
"logoWidth": 0
},
"defaultStorageProvider": "GOOGLE_DRIVE",
"sharedDashboard": true,
"sharedContacts": true,
"convertImagesToPdf": true,
"dueDateGracePeriod": 0,
"defaultVDSPeriod": 0,
"maxVDSPeriod": 0,
"defaultSendMethod": "DEFAULT",
"defaultAuthMethod": {
"type": "EMAIL_ACCESS_CODE",
"questionText": "string",
"questionAnswer": "string"
},
"disallowedFileExtensions": [
"string"
],
"displayPostSignatureConfirmation": true,
"outgoingEmailAddress": "user@example.com"
}'
Responses
🟢200Success
application/json
Body
id
string
required
branding
object (OrganizationBranding)
optional
colors
object
optional
logoUrl
string
optional
logoWidth
integer
optional
defaultStorageProvider
enum<string>
optional
Allowed values:
GOOGLE_DRIVEPIGEON
sharedDashboard
boolean
optional
sharedContacts
boolean
optional
convertImagesToPdf
boolean
optional
dueDateGracePeriod
integer
optional
defaultVDSPeriod
integer
optional
maxVDSPeriod
integer
optional
defaultSendMethod
enum<string>
optional
Allowed values:
DEFAULTEMAILSMSBOTHMULTIPLE
defaultAuthMethod
object (AuthenticationMethod)
optional
type
enum<string>
required
Allowed values:
EMAIL_ACCESS_CODESMS_ACCESS_CODESECURITY_QUESTION
questionText
string
optional
questionAnswer
string
optional
disallowedFileExtensions
array[string]
optional
displaySignatureConfirmationPage
boolean
optional
sendEmailsFromUserAddress
boolean
optional
Default:
false
Example
{
"id": "nostrud sint eiusmod esse",
"branding": {
"colors": {
"primary": "#00000",
"secondary": "#ffffff"
},
"logoUrl": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMTIzIiBoZWlnaHQ9IjMxMzEiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiNjMDFhOTMiLz48dGV4dCB4PSI1NjEuNSIgeT0iMTU2NS41IiBmb250LXNpemU9IjIwIiBhbGlnbm1lbnQtYmFzZWxpbmU9Im1pZGRsZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZmlsbD0id2hpdGUiPjExMjN4MzEzMTwvdGV4dD48L3N2Zz4="
},
"defaultStorageProvider": "GOOGLE_DRIVE",
"sharedDashboard": true,
"sharedContacts": true,
"convertImagesToPdf": true,
"dueDateGracePeriod": -91150445,
"defaultVDSPeriod": -47495232,
"maxVDSPeriod": 48460292,
"defaultSendMethod": "SMS",
"defaultAuthMethod": {
"type": "SECURITY_QUESTION",
"questionText": "aliqua",
"questionAnswer": "eu nulla deserunt"
},
"disallowedFileExtensions": [
"et occaecat"
],
"displayPostSignatureConfirmation": false
}
🟠400Bad Request
🟠404Record Not Found
Modified at 2024-12-16 15:49:22