docusign-maestro


Namedocusign-maestro JSON
Version 1.0.0rc1 PyPI version JSON
download
home_pageNone
SummaryMaestro API
upload_time2024-04-03 17:29:04
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseNone
keywords swagger maestro api
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # docusign-maestro
Maestro authors and executes experiences that allow non-coders the ability to define Simple Business Process without having to write code and to deploy them seamlessly without having to have development expertise

This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:

- API version: 1.0.0
- Package version: 1.0.0rc1
- Build package: io.swagger.codegen.languages.PythonClientCodegen
For more information, please visit [https://developers.docusign.com/](https://developers.docusign.com/)

## Requirements.

Python 2.7 and 3.4+

## Installation & Usage
### pip install

If the python package is hosted on Github, you can install directly from Github

```sh
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
```
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)

Then import the package:
```python
import docusign_maestro 
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)

Then import the package:
```python
import docusign_maestro
```

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python
from __future__ import print_function
import time
import docusign_maestro
from docusign_maestro.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: docusignAccessCode
configuration = docusign_maestro.Configuration()
configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = docusign_maestro.WorkflowInstanceManagementApi(docusign_maestro.ApiClient(configuration))
account_id = 'account_id_example' # str | Account ID
instance_id = 'instance_id_example' # str | DS Workflow Instance Id (dacId)

try:
    # Cancels a running workflow instance.
    api_response = api_instance.cancel_workflow_instance(account_id, instance_id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling WorkflowInstanceManagementApi->cancel_workflow_instance: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *https://www.docusign.net*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*WorkflowInstanceManagementApi* | [**cancel_workflow_instance**](docs/WorkflowInstanceManagementApi.md#cancel_workflow_instance) | **POST** aow-manage/v1.0/management/accounts/{accountId}/instances/{instanceId}/cancel | Cancels a running workflow instance.
*WorkflowInstanceManagementApi* | [**get_workflow_history**](docs/WorkflowInstanceManagementApi.md#get_workflow_history) | **GET** aow-manage/v1.0/management/accounts/{accountId}/instances/{instanceId}/history | Get List of Step Histories
*WorkflowInstanceManagementApi* | [**get_workflow_instance**](docs/WorkflowInstanceManagementApi.md#get_workflow_instance) | **GET** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/instances/{instanceId} | Get Workflow Instance Details
*WorkflowInstanceManagementApi* | [**get_workflow_instances**](docs/WorkflowInstanceManagementApi.md#get_workflow_instances) | **GET** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/instances | Get List of Workflow Instances
*WorkflowManagementApi* | [**create_workflow_definition**](docs/WorkflowManagementApi.md#create_workflow_definition) | **POST** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions | Creates a new workflow definition.
*WorkflowManagementApi* | [**delete_workflow_definition**](docs/WorkflowManagementApi.md#delete_workflow_definition) | **DELETE** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId} | Deletes a workflow definition.
*WorkflowManagementApi* | [**get_workflow_definition**](docs/WorkflowManagementApi.md#get_workflow_definition) | **GET** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId} | Get Workflow Definition
*WorkflowManagementApi* | [**get_workflow_definition_config_instances**](docs/WorkflowManagementApi.md#get_workflow_definition_config_instances) | **GET** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/configInstances | Gets configuration instances
*WorkflowManagementApi* | [**get_workflow_definitions**](docs/WorkflowManagementApi.md#get_workflow_definitions) | **GET** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions | Get Workflow Definitions metadata
*WorkflowManagementApi* | [**publish_or_un_publish_workflow_definition**](docs/WorkflowManagementApi.md#publish_or_un_publish_workflow_definition) | **POST** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/publish | Publishes or unpublishes a workflow definition.
*WorkflowManagementApi* | [**update_workflow_definition**](docs/WorkflowManagementApi.md#update_workflow_definition) | **PUT** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId} | Updates a workflow definition.
*WorkflowTriggerApi* | [**trigger_workflow**](docs/WorkflowTriggerApi.md#trigger_workflow) | **POST** aow-auth/v1.0/accounts/{accountId}/workflows/trigger | Creates a new workflow instance after authenticating with DS Account Server


## Documentation For Models

 - [AccessTokenResponse](docs/AccessTokenResponse.md)
 - [AccessTokenTokenTypes](docs/AccessTokenTokenTypes.md)
 - [CancelResponse](docs/CancelResponse.md)
 - [CreateOrUpdateWorkflowDefinitionRequestBody](docs/CreateOrUpdateWorkflowDefinitionRequestBody.md)
 - [DSDoUntilStep](docs/DSDoUntilStep.md)
 - [DSDocGenStep](docs/DSDocGenStep.md)
 - [DSDocGenStepInput](docs/DSDocGenStepInput.md)
 - [DSIdvStep](docs/DSIdvStep.md)
 - [DSIdvStepInput](docs/DSIdvStepInput.md)
 - [DSIfElseStep](docs/DSIfElseStep.md)
 - [DSLoopStep](docs/DSLoopStep.md)
 - [DSParallelStep](docs/DSParallelStep.md)
 - [DSServiceStep](docs/DSServiceStep.md)
 - [DSSignStep](docs/DSSignStep.md)
 - [DSSignStepInput](docs/DSSignStepInput.md)
 - [DSTransformationStep](docs/DSTransformationStep.md)
 - [DSWebFormsStep](docs/DSWebFormsStep.md)
 - [DSWebFormsStepConfig](docs/DSWebFormsStepConfig.md)
 - [DSWorkflowBooleanExpression](docs/DSWorkflowBooleanExpression.md)
 - [DSWorkflowComparisonExpression](docs/DSWorkflowComparisonExpression.md)
 - [DSWorkflowComparisonOperatorTypes](docs/DSWorkflowComparisonOperatorTypes.md)
 - [DSWorkflowConcatExpression](docs/DSWorkflowConcatExpression.md)
 - [DSWorkflowDocGenDocOutputFormat](docs/DSWorkflowDocGenDocOutputFormat.md)
 - [DSWorkflowExpressionTypesBooleanExpression](docs/DSWorkflowExpressionTypesBooleanExpression.md)
 - [DSWorkflowExpressionTypesComparisonExpression](docs/DSWorkflowExpressionTypesComparisonExpression.md)
 - [DSWorkflowExpressionTypesParallelExpression](docs/DSWorkflowExpressionTypesParallelExpression.md)
 - [DSWorkflowIndexOfExpression](docs/DSWorkflowIndexOfExpression.md)
 - [DSWorkflowLane](docs/DSWorkflowLane.md)
 - [DSWorkflowLanesRecord](docs/DSWorkflowLanesRecord.md)
 - [DSWorkflowLastIndexOfExpression](docs/DSWorkflowLastIndexOfExpression.md)
 - [DSWorkflowLogicalOperatorTypes](docs/DSWorkflowLogicalOperatorTypes.md)
 - [DSWorkflowParallelExpression](docs/DSWorkflowParallelExpression.md)
 - [DSWorkflowParticipantRecord](docs/DSWorkflowParticipantRecord.md)
 - [DSWorkflowReplaceExpression](docs/DSWorkflowReplaceExpression.md)
 - [DSWorkflowStep](docs/DSWorkflowStep.md)
 - [DSWorkflowStepTypesDSDocGen](docs/DSWorkflowStepTypesDSDocGen.md)
 - [DSWorkflowStepTypesDSIdv](docs/DSWorkflowStepTypesDSIdv.md)
 - [DSWorkflowStepTypesDSIfElse](docs/DSWorkflowStepTypesDSIfElse.md)
 - [DSWorkflowStepTypesDSSign](docs/DSWorkflowStepTypesDSSign.md)
 - [DSWorkflowStepTypesDSTransformation](docs/DSWorkflowStepTypesDSTransformation.md)
 - [DSWorkflowStepTypesDSWebForms](docs/DSWorkflowStepTypesDSWebForms.md)
 - [DSWorkflowStepTypesDoUntil](docs/DSWorkflowStepTypesDoUntil.md)
 - [DSWorkflowStepTypesLoop](docs/DSWorkflowStepTypesLoop.md)
 - [DSWorkflowStepTypesParallel](docs/DSWorkflowStepTypesParallel.md)
 - [DSWorkflowSubstringExpression](docs/DSWorkflowSubstringExpression.md)
 - [DSWorkflowToLowerExpression](docs/DSWorkflowToLowerExpression.md)
 - [DSWorkflowToUpperExpression](docs/DSWorkflowToUpperExpression.md)
 - [DSWorkflowTransformationExpression](docs/DSWorkflowTransformationExpression.md)
 - [DSWorkflowTransformationExpressionTypesConcatExpression](docs/DSWorkflowTransformationExpressionTypesConcatExpression.md)
 - [DSWorkflowTransformationExpressionTypesIndexOfExpression](docs/DSWorkflowTransformationExpressionTypesIndexOfExpression.md)
 - [DSWorkflowTransformationExpressionTypesLastIndexOfExpression](docs/DSWorkflowTransformationExpressionTypesLastIndexOfExpression.md)
 - [DSWorkflowTransformationExpressionTypesReplaceExpression](docs/DSWorkflowTransformationExpressionTypesReplaceExpression.md)
 - [DSWorkflowTransformationExpressionTypesSubstringExpression](docs/DSWorkflowTransformationExpressionTypesSubstringExpression.md)
 - [DSWorkflowTransformationExpressionTypesToLowerExpression](docs/DSWorkflowTransformationExpressionTypesToLowerExpression.md)
 - [DSWorkflowTransformationExpressionTypesToUpperExpression](docs/DSWorkflowTransformationExpressionTypesToUpperExpression.md)
 - [DSWorkflowTrigger](docs/DSWorkflowTrigger.md)
 - [DSWorkflowTriggerTypes](docs/DSWorkflowTriggerTypes.md)
 - [DSWorkflowVariable](docs/DSWorkflowVariable.md)
 - [DSWorkflowVariableFromParticipant](docs/DSWorkflowVariableFromParticipant.md)
 - [DSWorkflowVariableFromStep](docs/DSWorkflowVariableFromStep.md)
 - [DSWorkflowVariableFromVariable](docs/DSWorkflowVariableFromVariable.md)
 - [DSWorkflowVariableRecord](docs/DSWorkflowVariableRecord.md)
 - [DSWorkflowVariableSourceTypesParticipant](docs/DSWorkflowVariableSourceTypesParticipant.md)
 - [DSWorkflowVariableSourceTypesStep](docs/DSWorkflowVariableSourceTypesStep.md)
 - [DSWorkflowVariableSourceTypesVariable](docs/DSWorkflowVariableSourceTypesVariable.md)
 - [DeployRequest](docs/DeployRequest.md)
 - [DeployResponse](docs/DeployResponse.md)
 - [DeployStatus](docs/DeployStatus.md)
 - [DeploymentStatus](docs/DeploymentStatus.md)
 - [ESignDocumentFromESignTemplate](docs/ESignDocumentFromESignTemplate.md)
 - [ESignDocumentFromPreviousStep](docs/ESignDocumentFromPreviousStep.md)
 - [ESignDocumentTypesFromDSTemplate](docs/ESignDocumentTypesFromDSTemplate.md)
 - [ESignDocumentTypesFromPreviousStep](docs/ESignDocumentTypesFromPreviousStep.md)
 - [ESignDocuments](docs/ESignDocuments.md)
 - [ESignLocalePolicy](docs/ESignLocalePolicy.md)
 - [ESignSigner](docs/ESignSigner.md)
 - [ESignTabs](docs/ESignTabs.md)
 - [ESignTabsRecord](docs/ESignTabsRecord.md)
 - [ErrorCodes](docs/ErrorCodes.md)
 - [ErrorResponse](docs/ErrorResponse.md)
 - [EventTypes](docs/EventTypes.md)
 - [GetConfigurationInstanceResponse](docs/GetConfigurationInstanceResponse.md)
 - [GetConfigurationInstancesResponse](docs/GetConfigurationInstancesResponse.md)
 - [GetConfigurationInstancesResponseConfigInstances](docs/GetConfigurationInstancesResponseConfigInstances.md)
 - [HttpTypes](docs/HttpTypes.md)
 - [InvalidWorkflowResponse](docs/InvalidWorkflowResponse.md)
 - [NewOrUpdatedWorkflowDefinitionResponse](docs/NewOrUpdatedWorkflowDefinitionResponse.md)
 - [NumberOrVariable](docs/NumberOrVariable.md)
 - [Participant](docs/Participant.md)
 - [ParticipantKeys](docs/ParticipantKeys.md)
 - [ProgressInstance](docs/ProgressInstance.md)
 - [RecordStringBoolean](docs/RecordStringBoolean.md)
 - [RecordStringOrVariableOrTransformation](docs/RecordStringOrVariableOrTransformation.md)
 - [RecordToNever](docs/RecordToNever.md)
 - [ReplicationStatus](docs/ReplicationStatus.md)
 - [StartedByInstance](docs/StartedByInstance.md)
 - [StringOrVariableOrTransformation](docs/StringOrVariableOrTransformation.md)
 - [SuccessMessageResponse](docs/SuccessMessageResponse.md)
 - [TriggerPayload](docs/TriggerPayload.md)
 - [TriggerWorkflowViaPostResponse](docs/TriggerWorkflowViaPostResponse.md)
 - [ValidationErrors](docs/ValidationErrors.md)
 - [WorkflowDefinition](docs/WorkflowDefinition.md)
 - [WorkflowDefinitionList](docs/WorkflowDefinitionList.md)
 - [WorkflowDefinitionMetadata](docs/WorkflowDefinitionMetadata.md)
 - [WorkflowDefinitionWithId](docs/WorkflowDefinitionWithId.md)
 - [WorkflowDeleteResponse](docs/WorkflowDeleteResponse.md)
 - [WorkflowInstance](docs/WorkflowInstance.md)
 - [WorkflowInstanceMap](docs/WorkflowInstanceMap.md)
 - [WorkflowInstanceState](docs/WorkflowInstanceState.md)
 - [WorkflowInstancesList](docs/WorkflowInstancesList.md)
 - [WorkflowMetadataStatus](docs/WorkflowMetadataStatus.md)
 - [WorkflowStepError](docs/WorkflowStepError.md)
 - [WorkflowStepErrorError](docs/WorkflowStepErrorError.md)
 - [WorkflowStepHistory](docs/WorkflowStepHistory.md)
 - [WorkflowStepHistoryList](docs/WorkflowStepHistoryList.md)
 - [WorkflowStepHistoryState](docs/WorkflowStepHistoryState.md)


## Documentation For Authorization


## docusignAccessCode

- **Type**: OAuth
- **Flow**: accessCode
- **Authorization URL**: https://account.docusign.com/oauth/auth
- **Scopes**: N/A


## Author

devcenter@docusign.com


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "docusign-maestro",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "Swagger, Maestro API",
    "author": null,
    "author_email": "devcenter@docusign.com",
    "download_url": "https://files.pythonhosted.org/packages/02/7b/b3f5da043e8539e993abac5e7454455729084cf081d1c47b680aa002e289/docusign-maestro-1.0.0rc1.tar.gz",
    "platform": null,
    "description": "# docusign-maestro\nMaestro authors and executes experiences that allow non-coders the ability to define Simple Business Process without having to write code and to deploy them seamlessly without having to have development expertise\n\nThis Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:\n\n- API version: 1.0.0\n- Package version: 1.0.0rc1\n- Build package: io.swagger.codegen.languages.PythonClientCodegen\nFor more information, please visit [https://developers.docusign.com/](https://developers.docusign.com/)\n\n## Requirements.\n\nPython 2.7 and 3.4+\n\n## Installation & Usage\n### pip install\n\nIf the python package is hosted on Github, you can install directly from Github\n\n```sh\npip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)\n\nThen import the package:\n```python\nimport docusign_maestro \n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport docusign_maestro\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\nfrom __future__ import print_function\nimport time\nimport docusign_maestro\nfrom docusign_maestro.rest import ApiException\nfrom pprint import pprint\n\n# Configure OAuth2 access token for authorization: docusignAccessCode\nconfiguration = docusign_maestro.Configuration()\nconfiguration.access_token = 'YOUR_ACCESS_TOKEN'\n\n# create an instance of the API class\napi_instance = docusign_maestro.WorkflowInstanceManagementApi(docusign_maestro.ApiClient(configuration))\naccount_id = 'account_id_example' # str | Account ID\ninstance_id = 'instance_id_example' # str | DS Workflow Instance Id (dacId)\n\ntry:\n    # Cancels a running workflow instance.\n    api_response = api_instance.cancel_workflow_instance(account_id, instance_id)\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling WorkflowInstanceManagementApi->cancel_workflow_instance: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://www.docusign.net*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*WorkflowInstanceManagementApi* | [**cancel_workflow_instance**](docs/WorkflowInstanceManagementApi.md#cancel_workflow_instance) | **POST** aow-manage/v1.0/management/accounts/{accountId}/instances/{instanceId}/cancel | Cancels a running workflow instance.\n*WorkflowInstanceManagementApi* | [**get_workflow_history**](docs/WorkflowInstanceManagementApi.md#get_workflow_history) | **GET** aow-manage/v1.0/management/accounts/{accountId}/instances/{instanceId}/history | Get List of Step Histories\n*WorkflowInstanceManagementApi* | [**get_workflow_instance**](docs/WorkflowInstanceManagementApi.md#get_workflow_instance) | **GET** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/instances/{instanceId} | Get Workflow Instance Details\n*WorkflowInstanceManagementApi* | [**get_workflow_instances**](docs/WorkflowInstanceManagementApi.md#get_workflow_instances) | **GET** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/instances | Get List of Workflow Instances\n*WorkflowManagementApi* | [**create_workflow_definition**](docs/WorkflowManagementApi.md#create_workflow_definition) | **POST** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions | Creates a new workflow definition.\n*WorkflowManagementApi* | [**delete_workflow_definition**](docs/WorkflowManagementApi.md#delete_workflow_definition) | **DELETE** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId} | Deletes a workflow definition.\n*WorkflowManagementApi* | [**get_workflow_definition**](docs/WorkflowManagementApi.md#get_workflow_definition) | **GET** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId} | Get Workflow Definition\n*WorkflowManagementApi* | [**get_workflow_definition_config_instances**](docs/WorkflowManagementApi.md#get_workflow_definition_config_instances) | **GET** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/configInstances | Gets configuration instances\n*WorkflowManagementApi* | [**get_workflow_definitions**](docs/WorkflowManagementApi.md#get_workflow_definitions) | **GET** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions | Get Workflow Definitions metadata\n*WorkflowManagementApi* | [**publish_or_un_publish_workflow_definition**](docs/WorkflowManagementApi.md#publish_or_un_publish_workflow_definition) | **POST** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/publish | Publishes or unpublishes a workflow definition.\n*WorkflowManagementApi* | [**update_workflow_definition**](docs/WorkflowManagementApi.md#update_workflow_definition) | **PUT** aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId} | Updates a workflow definition.\n*WorkflowTriggerApi* | [**trigger_workflow**](docs/WorkflowTriggerApi.md#trigger_workflow) | **POST** aow-auth/v1.0/accounts/{accountId}/workflows/trigger | Creates a new workflow instance after authenticating with DS Account Server\n\n\n## Documentation For Models\n\n - [AccessTokenResponse](docs/AccessTokenResponse.md)\n - [AccessTokenTokenTypes](docs/AccessTokenTokenTypes.md)\n - [CancelResponse](docs/CancelResponse.md)\n - [CreateOrUpdateWorkflowDefinitionRequestBody](docs/CreateOrUpdateWorkflowDefinitionRequestBody.md)\n - [DSDoUntilStep](docs/DSDoUntilStep.md)\n - [DSDocGenStep](docs/DSDocGenStep.md)\n - [DSDocGenStepInput](docs/DSDocGenStepInput.md)\n - [DSIdvStep](docs/DSIdvStep.md)\n - [DSIdvStepInput](docs/DSIdvStepInput.md)\n - [DSIfElseStep](docs/DSIfElseStep.md)\n - [DSLoopStep](docs/DSLoopStep.md)\n - [DSParallelStep](docs/DSParallelStep.md)\n - [DSServiceStep](docs/DSServiceStep.md)\n - [DSSignStep](docs/DSSignStep.md)\n - [DSSignStepInput](docs/DSSignStepInput.md)\n - [DSTransformationStep](docs/DSTransformationStep.md)\n - [DSWebFormsStep](docs/DSWebFormsStep.md)\n - [DSWebFormsStepConfig](docs/DSWebFormsStepConfig.md)\n - [DSWorkflowBooleanExpression](docs/DSWorkflowBooleanExpression.md)\n - [DSWorkflowComparisonExpression](docs/DSWorkflowComparisonExpression.md)\n - [DSWorkflowComparisonOperatorTypes](docs/DSWorkflowComparisonOperatorTypes.md)\n - [DSWorkflowConcatExpression](docs/DSWorkflowConcatExpression.md)\n - [DSWorkflowDocGenDocOutputFormat](docs/DSWorkflowDocGenDocOutputFormat.md)\n - [DSWorkflowExpressionTypesBooleanExpression](docs/DSWorkflowExpressionTypesBooleanExpression.md)\n - [DSWorkflowExpressionTypesComparisonExpression](docs/DSWorkflowExpressionTypesComparisonExpression.md)\n - [DSWorkflowExpressionTypesParallelExpression](docs/DSWorkflowExpressionTypesParallelExpression.md)\n - [DSWorkflowIndexOfExpression](docs/DSWorkflowIndexOfExpression.md)\n - [DSWorkflowLane](docs/DSWorkflowLane.md)\n - [DSWorkflowLanesRecord](docs/DSWorkflowLanesRecord.md)\n - [DSWorkflowLastIndexOfExpression](docs/DSWorkflowLastIndexOfExpression.md)\n - [DSWorkflowLogicalOperatorTypes](docs/DSWorkflowLogicalOperatorTypes.md)\n - [DSWorkflowParallelExpression](docs/DSWorkflowParallelExpression.md)\n - [DSWorkflowParticipantRecord](docs/DSWorkflowParticipantRecord.md)\n - [DSWorkflowReplaceExpression](docs/DSWorkflowReplaceExpression.md)\n - [DSWorkflowStep](docs/DSWorkflowStep.md)\n - [DSWorkflowStepTypesDSDocGen](docs/DSWorkflowStepTypesDSDocGen.md)\n - [DSWorkflowStepTypesDSIdv](docs/DSWorkflowStepTypesDSIdv.md)\n - [DSWorkflowStepTypesDSIfElse](docs/DSWorkflowStepTypesDSIfElse.md)\n - [DSWorkflowStepTypesDSSign](docs/DSWorkflowStepTypesDSSign.md)\n - [DSWorkflowStepTypesDSTransformation](docs/DSWorkflowStepTypesDSTransformation.md)\n - [DSWorkflowStepTypesDSWebForms](docs/DSWorkflowStepTypesDSWebForms.md)\n - [DSWorkflowStepTypesDoUntil](docs/DSWorkflowStepTypesDoUntil.md)\n - [DSWorkflowStepTypesLoop](docs/DSWorkflowStepTypesLoop.md)\n - [DSWorkflowStepTypesParallel](docs/DSWorkflowStepTypesParallel.md)\n - [DSWorkflowSubstringExpression](docs/DSWorkflowSubstringExpression.md)\n - [DSWorkflowToLowerExpression](docs/DSWorkflowToLowerExpression.md)\n - [DSWorkflowToUpperExpression](docs/DSWorkflowToUpperExpression.md)\n - [DSWorkflowTransformationExpression](docs/DSWorkflowTransformationExpression.md)\n - [DSWorkflowTransformationExpressionTypesConcatExpression](docs/DSWorkflowTransformationExpressionTypesConcatExpression.md)\n - [DSWorkflowTransformationExpressionTypesIndexOfExpression](docs/DSWorkflowTransformationExpressionTypesIndexOfExpression.md)\n - [DSWorkflowTransformationExpressionTypesLastIndexOfExpression](docs/DSWorkflowTransformationExpressionTypesLastIndexOfExpression.md)\n - [DSWorkflowTransformationExpressionTypesReplaceExpression](docs/DSWorkflowTransformationExpressionTypesReplaceExpression.md)\n - [DSWorkflowTransformationExpressionTypesSubstringExpression](docs/DSWorkflowTransformationExpressionTypesSubstringExpression.md)\n - [DSWorkflowTransformationExpressionTypesToLowerExpression](docs/DSWorkflowTransformationExpressionTypesToLowerExpression.md)\n - [DSWorkflowTransformationExpressionTypesToUpperExpression](docs/DSWorkflowTransformationExpressionTypesToUpperExpression.md)\n - [DSWorkflowTrigger](docs/DSWorkflowTrigger.md)\n - [DSWorkflowTriggerTypes](docs/DSWorkflowTriggerTypes.md)\n - [DSWorkflowVariable](docs/DSWorkflowVariable.md)\n - [DSWorkflowVariableFromParticipant](docs/DSWorkflowVariableFromParticipant.md)\n - [DSWorkflowVariableFromStep](docs/DSWorkflowVariableFromStep.md)\n - [DSWorkflowVariableFromVariable](docs/DSWorkflowVariableFromVariable.md)\n - [DSWorkflowVariableRecord](docs/DSWorkflowVariableRecord.md)\n - [DSWorkflowVariableSourceTypesParticipant](docs/DSWorkflowVariableSourceTypesParticipant.md)\n - [DSWorkflowVariableSourceTypesStep](docs/DSWorkflowVariableSourceTypesStep.md)\n - [DSWorkflowVariableSourceTypesVariable](docs/DSWorkflowVariableSourceTypesVariable.md)\n - [DeployRequest](docs/DeployRequest.md)\n - [DeployResponse](docs/DeployResponse.md)\n - [DeployStatus](docs/DeployStatus.md)\n - [DeploymentStatus](docs/DeploymentStatus.md)\n - [ESignDocumentFromESignTemplate](docs/ESignDocumentFromESignTemplate.md)\n - [ESignDocumentFromPreviousStep](docs/ESignDocumentFromPreviousStep.md)\n - [ESignDocumentTypesFromDSTemplate](docs/ESignDocumentTypesFromDSTemplate.md)\n - [ESignDocumentTypesFromPreviousStep](docs/ESignDocumentTypesFromPreviousStep.md)\n - [ESignDocuments](docs/ESignDocuments.md)\n - [ESignLocalePolicy](docs/ESignLocalePolicy.md)\n - [ESignSigner](docs/ESignSigner.md)\n - [ESignTabs](docs/ESignTabs.md)\n - [ESignTabsRecord](docs/ESignTabsRecord.md)\n - [ErrorCodes](docs/ErrorCodes.md)\n - [ErrorResponse](docs/ErrorResponse.md)\n - [EventTypes](docs/EventTypes.md)\n - [GetConfigurationInstanceResponse](docs/GetConfigurationInstanceResponse.md)\n - [GetConfigurationInstancesResponse](docs/GetConfigurationInstancesResponse.md)\n - [GetConfigurationInstancesResponseConfigInstances](docs/GetConfigurationInstancesResponseConfigInstances.md)\n - [HttpTypes](docs/HttpTypes.md)\n - [InvalidWorkflowResponse](docs/InvalidWorkflowResponse.md)\n - [NewOrUpdatedWorkflowDefinitionResponse](docs/NewOrUpdatedWorkflowDefinitionResponse.md)\n - [NumberOrVariable](docs/NumberOrVariable.md)\n - [Participant](docs/Participant.md)\n - [ParticipantKeys](docs/ParticipantKeys.md)\n - [ProgressInstance](docs/ProgressInstance.md)\n - [RecordStringBoolean](docs/RecordStringBoolean.md)\n - [RecordStringOrVariableOrTransformation](docs/RecordStringOrVariableOrTransformation.md)\n - [RecordToNever](docs/RecordToNever.md)\n - [ReplicationStatus](docs/ReplicationStatus.md)\n - [StartedByInstance](docs/StartedByInstance.md)\n - [StringOrVariableOrTransformation](docs/StringOrVariableOrTransformation.md)\n - [SuccessMessageResponse](docs/SuccessMessageResponse.md)\n - [TriggerPayload](docs/TriggerPayload.md)\n - [TriggerWorkflowViaPostResponse](docs/TriggerWorkflowViaPostResponse.md)\n - [ValidationErrors](docs/ValidationErrors.md)\n - [WorkflowDefinition](docs/WorkflowDefinition.md)\n - [WorkflowDefinitionList](docs/WorkflowDefinitionList.md)\n - [WorkflowDefinitionMetadata](docs/WorkflowDefinitionMetadata.md)\n - [WorkflowDefinitionWithId](docs/WorkflowDefinitionWithId.md)\n - [WorkflowDeleteResponse](docs/WorkflowDeleteResponse.md)\n - [WorkflowInstance](docs/WorkflowInstance.md)\n - [WorkflowInstanceMap](docs/WorkflowInstanceMap.md)\n - [WorkflowInstanceState](docs/WorkflowInstanceState.md)\n - [WorkflowInstancesList](docs/WorkflowInstancesList.md)\n - [WorkflowMetadataStatus](docs/WorkflowMetadataStatus.md)\n - [WorkflowStepError](docs/WorkflowStepError.md)\n - [WorkflowStepErrorError](docs/WorkflowStepErrorError.md)\n - [WorkflowStepHistory](docs/WorkflowStepHistory.md)\n - [WorkflowStepHistoryList](docs/WorkflowStepHistoryList.md)\n - [WorkflowStepHistoryState](docs/WorkflowStepHistoryState.md)\n\n\n## Documentation For Authorization\n\n\n## docusignAccessCode\n\n- **Type**: OAuth\n- **Flow**: accessCode\n- **Authorization URL**: https://account.docusign.com/oauth/auth\n- **Scopes**: N/A\n\n\n## Author\n\ndevcenter@docusign.com\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Maestro API",
    "version": "1.0.0rc1",
    "project_urls": null,
    "split_keywords": [
        "swagger",
        " maestro api"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a229a977a23d31f7b1669e994ea26f76b536b3be3b2af95289d389f7d224e0d",
                "md5": "71c5945835c2dd402196908d515a6927",
                "sha256": "d5c17c518b19dc326f0621540017e729db42277e2b8ba5dbe662b720115c495b"
            },
            "downloads": -1,
            "filename": "docusign_maestro-1.0.0rc1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "71c5945835c2dd402196908d515a6927",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 230250,
            "upload_time": "2024-04-03T17:29:01",
            "upload_time_iso_8601": "2024-04-03T17:29:01.077685Z",
            "url": "https://files.pythonhosted.org/packages/0a/22/9a977a23d31f7b1669e994ea26f76b536b3be3b2af95289d389f7d224e0d/docusign_maestro-1.0.0rc1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "027bb3f5da043e8539e993abac5e7454455729084cf081d1c47b680aa002e289",
                "md5": "d5c60505d9b2b264c4b6adde812c525d",
                "sha256": "57b482046b9f34577f2a5c37528be63a88cf3daecefb24655c6e53255f75d45c"
            },
            "downloads": -1,
            "filename": "docusign-maestro-1.0.0rc1.tar.gz",
            "has_sig": false,
            "md5_digest": "d5c60505d9b2b264c4b6adde812c525d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 62864,
            "upload_time": "2024-04-03T17:29:04",
            "upload_time_iso_8601": "2024-04-03T17:29:04.741622Z",
            "url": "https://files.pythonhosted.org/packages/02/7b/b3f5da043e8539e993abac5e7454455729084cf081d1c47b680aa002e289/docusign-maestro-1.0.0rc1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-03 17:29:04",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "docusign-maestro"
}
        
Elapsed time: 0.22138s