Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mfriesen committed Oct 11, 2024
1 parent cec0b63 commit 7a2ee00
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 12 deletions.
30 changes: 26 additions & 4 deletions docs/openapi/openapi-iam.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10711,7 +10711,7 @@
enum:
- EMAIL
- INPERSON
DocusignInPerson:
DocusignRecipientView:
type: object
properties:
returnUrl:
Expand All @@ -10736,8 +10736,13 @@
description: List of DocuSign Signers
items:
$ref: '#/components/schemas/DocusignSigner'
inperson:
$ref: '#/components/schemas/DocusignInPerson'
inpersonSigners:
type: array
description: List of DocuSign Inperson Signers
items:
$ref: '#/components/schemas/DocusignInpersonSigner'
recipientView:
$ref: '#/components/schemas/DocusignRecipientView'
DocusignSigner:
required:
- name
Expand All @@ -10749,9 +10754,26 @@
email:
type: string
description: Email of Signer
DocusignInpersonSigner:
required:
- hostEmail
- hostName
- signerName
- clientUserId
type: object
properties:
hostEmail:
type: string
description: The email of the signing host
hostName:
type: string
description: The name of the signing host
clientUserId:
type: string
description: Specifies unique identifier for signer (required if using InPerson)
description: Specifies unique identifier for signer
signerName:
type: string
description: The full legal name of a signer
AddDocusignResponse:
type: object
properties:
Expand Down
30 changes: 26 additions & 4 deletions docs/openapi/openapi-jwt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10711,7 +10711,7 @@
enum:
- EMAIL
- INPERSON
DocusignInPerson:
DocusignRecipientView:
type: object
properties:
returnUrl:
Expand All @@ -10736,8 +10736,13 @@
description: List of DocuSign Signers
items:
$ref: '#/components/schemas/DocusignSigner'
inperson:
$ref: '#/components/schemas/DocusignInPerson'
inpersonSigners:
type: array
description: List of DocuSign Inperson Signers
items:
$ref: '#/components/schemas/DocusignInpersonSigner'
recipientView:
$ref: '#/components/schemas/DocusignRecipientView'
DocusignSigner:
required:
- name
Expand All @@ -10749,9 +10754,26 @@
email:
type: string
description: Email of Signer
DocusignInpersonSigner:
required:
- hostEmail
- hostName
- signerName
- clientUserId
type: object
properties:
hostEmail:
type: string
description: The email of the signing host
hostName:
type: string
description: The name of the signing host
clientUserId:
type: string
description: Specifies unique identifier for signer (required if using InPerson)
description: Specifies unique identifier for signer
signerName:
type: string
description: The full legal name of a signer
AddDocusignResponse:
type: object
properties:
Expand Down
30 changes: 26 additions & 4 deletions docs/openapi/openapi-key.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10711,7 +10711,7 @@
enum:
- EMAIL
- INPERSON
DocusignInPerson:
DocusignRecipientView:
type: object
properties:
returnUrl:
Expand All @@ -10736,8 +10736,13 @@
description: List of DocuSign Signers
items:
$ref: '#/components/schemas/DocusignSigner'
inperson:
$ref: '#/components/schemas/DocusignInPerson'
inpersonSigners:
type: array
description: List of DocuSign Inperson Signers
items:
$ref: '#/components/schemas/DocusignInpersonSigner'
recipientView:
$ref: '#/components/schemas/DocusignRecipientView'
DocusignSigner:
required:
- name
Expand All @@ -10749,9 +10754,26 @@
email:
type: string
description: Email of Signer
DocusignInpersonSigner:
required:
- hostEmail
- hostName
- signerName
- clientUserId
type: object
properties:
hostEmail:
type: string
description: The email of the signing host
hostName:
type: string
description: The name of the signing host
clientUserId:
type: string
description: Specifies unique identifier for signer (required if using InPerson)
description: Specifies unique identifier for signer
signerName:
type: string
description: The full legal name of a signer
AddDocusignResponse:
type: object
properties:
Expand Down

0 comments on commit 7a2ee00

Please sign in to comment.