action docusign_contacts_get_contact_by_id { label: "Gets one or more contacts." description: "This method returns one or more contacts\nassociated with a Docusign account. You can also\nretrieve contacts from connected [cloud storage][CloudStorage] providers by using the\n`cloud_provider` query parameter. By default,\ncontacts are retrieved from the Docusign account's\ndefault address book.\n\nTo return a specific contact, use the `contactId`\nquery parameter. To return all contacts associated\nwith an account, omit this parameter.\n\n[CloudStorage]: /docs/esign-rest-api/reference/cloudstorage/" provider: docusign method: GET path: "/v2.1/accounts/{accountId}/contacts/{contactId}" encoding: json input: { type: "object" properties: { accountId: { type: "string" } cloud_provider: { type: "string" } contactId: { type: "string" } } required: ["accountId", "contactId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }