Skip to content

Latest commit

 

History

History
1101 lines (781 loc) · 47 KB

File metadata and controls

1101 lines (781 loc) · 47 KB

twentycrm_client.WorkflowVersionsApi

All URIs are relative to https://crm.example.com/rest

Method HTTP request Description
create_many_workflow_versions POST /batch/workflowVersions Create Many workflowVersions
create_one_workflow_version POST /workflowVersions Create One workflowVersion
delete_many_workflow_versions DELETE /workflowVersions Delete Many workflowVersions
delete_one_workflow_version DELETE /workflowVersions/{id} Delete One workflowVersion
find_many_workflow_versions GET /workflowVersions Find Many workflowVersions
find_one_workflow_version GET /workflowVersions/{id} Find One workflowVersion
find_workflow_version_duplicates POST /workflowVersions/duplicates Find workflowVersion Duplicates
group_by_workflow_versions GET /workflowVersions/groupBy Group By workflowVersions
merge_many_workflow_versions PATCH /workflowVersions/merge Merge Many workflowVersions
restore_many_workflow_versions PATCH /restore/workflowVersions Restore Many workflowVersions
restore_one_workflow_version PATCH /restore/workflowVersions/{id} Restore One workflowVersion
update_many_workflow_versions PATCH /workflowVersions Update Many workflowVersions
update_one_workflow_version PATCH /workflowVersions/{id} Update One workflowVersion

create_many_workflow_versions

CreateManyWorkflowVersions201Response create_many_workflow_versions(workflow_version, depth=depth, upsert=upsert)

Create Many workflowVersions

Example

  • Bearer (JWT) Authentication (bearerAuth):
import twentycrm_client
from twentycrm_client.models.create_many_workflow_versions201_response import CreateManyWorkflowVersions201Response
from twentycrm_client.models.workflow_version import WorkflowVersion
from twentycrm_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://crm.example.com/rest
# See configuration.py for a list of all supported configuration parameters.
configuration = twentycrm_client.Configuration(
    host = "https://crm.example.com/rest"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization (JWT): bearerAuth
configuration = twentycrm_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with twentycrm_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = twentycrm_client.WorkflowVersionsApi(api_client)
    workflow_version = [twentycrm_client.WorkflowVersion()] # List[WorkflowVersion] | 
    depth = 1 # int | Determines the level of nested related objects to include in the response.     - 0: Primary object only     - 1: Primary object + direct relations (optional) (default to 1)
    upsert = False # bool | If true, creates the object or updates it if it already exists. (optional) (default to False)

    try:
        # Create Many workflowVersions
        api_response = api_instance.create_many_workflow_versions(workflow_version, depth=depth, upsert=upsert)
        print("The response of WorkflowVersionsApi->create_many_workflow_versions:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WorkflowVersionsApi->create_many_workflow_versions: %s\n" % e)

Parameters

Name Type Description Notes
workflow_version List[WorkflowVersion]
depth int Determines the level of nested related objects to include in the response. - 0: Primary object only - 1: Primary object + direct relations [optional] [default to 1]
upsert bool If true, creates the object or updates it if it already exists. [optional] [default to False]

Return type

CreateManyWorkflowVersions201Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status code Description Response headers
201 Successful operation -
400 Bad Request -
401 Unauthorized -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

create_one_workflow_version

CreateOneWorkflowVersion201Response create_one_workflow_version(workflow_version, depth=depth, upsert=upsert)

Create One workflowVersion

Example

  • Bearer (JWT) Authentication (bearerAuth):
import twentycrm_client
from twentycrm_client.models.create_one_workflow_version201_response import CreateOneWorkflowVersion201Response
from twentycrm_client.models.workflow_version import WorkflowVersion
from twentycrm_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://crm.example.com/rest
# See configuration.py for a list of all supported configuration parameters.
configuration = twentycrm_client.Configuration(
    host = "https://crm.example.com/rest"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization (JWT): bearerAuth
configuration = twentycrm_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with twentycrm_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = twentycrm_client.WorkflowVersionsApi(api_client)
    workflow_version = twentycrm_client.WorkflowVersion() # WorkflowVersion | body
    depth = 1 # int | Determines the level of nested related objects to include in the response.     - 0: Primary object only     - 1: Primary object + direct relations (optional) (default to 1)
    upsert = False # bool | If true, creates the object or updates it if it already exists. (optional) (default to False)

    try:
        # Create One workflowVersion
        api_response = api_instance.create_one_workflow_version(workflow_version, depth=depth, upsert=upsert)
        print("The response of WorkflowVersionsApi->create_one_workflow_version:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WorkflowVersionsApi->create_one_workflow_version: %s\n" % e)

Parameters

Name Type Description Notes
workflow_version WorkflowVersion body
depth int Determines the level of nested related objects to include in the response. - 0: Primary object only - 1: Primary object + direct relations [optional] [default to 1]
upsert bool If true, creates the object or updates it if it already exists. [optional] [default to False]

Return type

CreateOneWorkflowVersion201Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status code Description Response headers
201 Successful operation -
400 Bad Request -
401 Unauthorized -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

delete_many_workflow_versions

DeleteManyWorkflowVersions200Response delete_many_workflow_versions(filter=filter, soft_delete=soft_delete)

Delete Many workflowVersions

Example

  • Bearer (JWT) Authentication (bearerAuth):
import twentycrm_client
from twentycrm_client.models.delete_many_workflow_versions200_response import DeleteManyWorkflowVersions200Response
from twentycrm_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://crm.example.com/rest
# See configuration.py for a list of all supported configuration parameters.
configuration = twentycrm_client.Configuration(
    host = "https://crm.example.com/rest"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization (JWT): bearerAuth
configuration = twentycrm_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with twentycrm_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = twentycrm_client.WorkflowVersionsApi(api_client)
    filter = 'createdAt[gte]:\"2023-01-01\"' # str | Format: field[COMPARATOR]:value,field2[COMPARATOR]:value2.     For like/ilike, use % as a wildcard (e.g. %value% for substring match).     Refer to the filter section at the top of the page for more details. (optional)
    soft_delete = False # bool | If true, soft deletes the objects. If false, objects are permanently deleted. (optional) (default to False)

    try:
        # Delete Many workflowVersions
        api_response = api_instance.delete_many_workflow_versions(filter=filter, soft_delete=soft_delete)
        print("The response of WorkflowVersionsApi->delete_many_workflow_versions:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WorkflowVersionsApi->delete_many_workflow_versions: %s\n" % e)

Parameters

Name Type Description Notes
filter str Format: field[COMPARATOR]:value,field2[COMPARATOR]:value2. For like/ilike, use % as a wildcard (e.g. %value% for substring match). Refer to the filter section at the top of the page for more details. [optional]
soft_delete bool If true, soft deletes the objects. If false, objects are permanently deleted. [optional] [default to False]

Return type

DeleteManyWorkflowVersions200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Successful operation -
400 Bad Request -
401 Unauthorized -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

delete_one_workflow_version

DeleteOneWorkflowVersion200Response delete_one_workflow_version(id, soft_delete=soft_delete)

Delete One workflowVersion

Example

  • Bearer (JWT) Authentication (bearerAuth):
import twentycrm_client
from twentycrm_client.models.delete_one_workflow_version200_response import DeleteOneWorkflowVersion200Response
from twentycrm_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://crm.example.com/rest
# See configuration.py for a list of all supported configuration parameters.
configuration = twentycrm_client.Configuration(
    host = "https://crm.example.com/rest"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization (JWT): bearerAuth
configuration = twentycrm_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with twentycrm_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = twentycrm_client.WorkflowVersionsApi(api_client)
    id = UUID('38400000-8cf0-11bd-b23e-10b96e4ef00d') # UUID | Object id.
    soft_delete = False # bool | If true, soft deletes the objects. If false, objects are permanently deleted. (optional) (default to False)

    try:
        # Delete One workflowVersion
        api_response = api_instance.delete_one_workflow_version(id, soft_delete=soft_delete)
        print("The response of WorkflowVersionsApi->delete_one_workflow_version:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WorkflowVersionsApi->delete_one_workflow_version: %s\n" % e)

Parameters

Name Type Description Notes
id UUID Object id.
soft_delete bool If true, soft deletes the objects. If false, objects are permanently deleted. [optional] [default to False]

Return type

DeleteOneWorkflowVersion200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Successful operation -
400 Bad Request -
401 Unauthorized -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

find_many_workflow_versions

FindManyWorkflowVersions200Response find_many_workflow_versions(order_by=order_by, filter=filter, limit=limit, depth=depth, starting_after=starting_after, ending_before=ending_before)

Find Many workflowVersions

order_by, filter, limit, depth, starting_after or ending_before can be provided to request your workflowVersions

Example

  • Bearer (JWT) Authentication (bearerAuth):
import twentycrm_client
from twentycrm_client.models.find_many_workflow_versions200_response import FindManyWorkflowVersions200Response
from twentycrm_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://crm.example.com/rest
# See configuration.py for a list of all supported configuration parameters.
configuration = twentycrm_client.Configuration(
    host = "https://crm.example.com/rest"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization (JWT): bearerAuth
configuration = twentycrm_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with twentycrm_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = twentycrm_client.WorkflowVersionsApi(api_client)
    order_by = 'createdAt' # str | Format: **field_name_1,field_name_2[DIRECTION_2]     Refer to the filter section at the top of the page for more details. (optional)
    filter = 'createdAt[gte]:\"2023-01-01\"' # str | Format: field[COMPARATOR]:value,field2[COMPARATOR]:value2.     For like/ilike, use % as a wildcard (e.g. %value% for substring match).     Refer to the filter section at the top of the page for more details. (optional)
    limit = 60 # int | Limits the number of objects returned. (optional) (default to 60)
    depth = 1 # int | Determines the level of nested related objects to include in the response.     - 0: Primary object only     - 1: Primary object + direct relations (optional) (default to 1)
    starting_after = 'starting_after_example' # str | Returns objects starting after a specific cursor. You can find cursors in **startCursor** and **endCursor** in **pageInfo** in response data (optional)
    ending_before = 'ending_before_example' # str | Returns objects ending before a specific cursor. You can find cursors in **startCursor** and **endCursor** in **pageInfo** in response data (optional)

    try:
        # Find Many workflowVersions
        api_response = api_instance.find_many_workflow_versions(order_by=order_by, filter=filter, limit=limit, depth=depth, starting_after=starting_after, ending_before=ending_before)
        print("The response of WorkflowVersionsApi->find_many_workflow_versions:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WorkflowVersionsApi->find_many_workflow_versions: %s\n" % e)

Parameters

Name Type Description Notes
order_by str Format: **field_name_1,field_name_2[DIRECTION_2] Refer to the filter section at the top of the page for more details. [optional]
filter str Format: field[COMPARATOR]:value,field2[COMPARATOR]:value2. For like/ilike, use % as a wildcard (e.g. %value% for substring match). Refer to the filter section at the top of the page for more details. [optional]
limit int Limits the number of objects returned. [optional] [default to 60]
depth int Determines the level of nested related objects to include in the response. - 0: Primary object only - 1: Primary object + direct relations [optional] [default to 1]
starting_after str Returns objects starting after a specific cursor. You can find cursors in startCursor and endCursor in pageInfo in response data [optional]
ending_before str Returns objects ending before a specific cursor. You can find cursors in startCursor and endCursor in pageInfo in response data [optional]

Return type

FindManyWorkflowVersions200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Successful operation -
400 Bad Request -
401 Unauthorized -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

find_one_workflow_version

FindOneWorkflowVersion200Response find_one_workflow_version(id, depth=depth)

Find One workflowVersion

depth can be provided to request your workflowVersion

Example

  • Bearer (JWT) Authentication (bearerAuth):
import twentycrm_client
from twentycrm_client.models.find_one_workflow_version200_response import FindOneWorkflowVersion200Response
from twentycrm_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://crm.example.com/rest
# See configuration.py for a list of all supported configuration parameters.
configuration = twentycrm_client.Configuration(
    host = "https://crm.example.com/rest"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization (JWT): bearerAuth
configuration = twentycrm_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with twentycrm_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = twentycrm_client.WorkflowVersionsApi(api_client)
    id = UUID('38400000-8cf0-11bd-b23e-10b96e4ef00d') # UUID | Object id.
    depth = 1 # int | Determines the level of nested related objects to include in the response.     - 0: Primary object only     - 1: Primary object + direct relations (optional) (default to 1)

    try:
        # Find One workflowVersion
        api_response = api_instance.find_one_workflow_version(id, depth=depth)
        print("The response of WorkflowVersionsApi->find_one_workflow_version:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WorkflowVersionsApi->find_one_workflow_version: %s\n" % e)

Parameters

Name Type Description Notes
id UUID Object id.
depth int Determines the level of nested related objects to include in the response. - 0: Primary object only - 1: Primary object + direct relations [optional] [default to 1]

Return type

FindOneWorkflowVersion200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Successful operation -
400 Bad Request -
401 Unauthorized -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

find_workflow_version_duplicates

FindWorkflowVersionDuplicates200Response find_workflow_version_duplicates(find_workflow_version_duplicates_request, depth=depth)

Find workflowVersion Duplicates

depth can be provided to request your workflowVersion

Example

  • Bearer (JWT) Authentication (bearerAuth):
import twentycrm_client
from twentycrm_client.models.find_workflow_version_duplicates200_response import FindWorkflowVersionDuplicates200Response
from twentycrm_client.models.find_workflow_version_duplicates_request import FindWorkflowVersionDuplicatesRequest
from twentycrm_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://crm.example.com/rest
# See configuration.py for a list of all supported configuration parameters.
configuration = twentycrm_client.Configuration(
    host = "https://crm.example.com/rest"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization (JWT): bearerAuth
configuration = twentycrm_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with twentycrm_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = twentycrm_client.WorkflowVersionsApi(api_client)
    find_workflow_version_duplicates_request = twentycrm_client.FindWorkflowVersionDuplicatesRequest() # FindWorkflowVersionDuplicatesRequest | body
    depth = 1 # int | Determines the level of nested related objects to include in the response.     - 0: Primary object only     - 1: Primary object + direct relations (optional) (default to 1)

    try:
        # Find workflowVersion Duplicates
        api_response = api_instance.find_workflow_version_duplicates(find_workflow_version_duplicates_request, depth=depth)
        print("The response of WorkflowVersionsApi->find_workflow_version_duplicates:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WorkflowVersionsApi->find_workflow_version_duplicates: %s\n" % e)

Parameters

Name Type Description Notes
find_workflow_version_duplicates_request FindWorkflowVersionDuplicatesRequest body
depth int Determines the level of nested related objects to include in the response. - 0: Primary object only - 1: Primary object + direct relations [optional] [default to 1]

Return type

FindWorkflowVersionDuplicates200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Successful operation -
400 Bad Request -
401 Unauthorized -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

group_by_workflow_versions

GroupByWorkflowVersions200Response group_by_workflow_versions(group_by, filter=filter, order_by=order_by, limit=limit, view_id=view_id, aggregate=aggregate, include_records_sample=include_records_sample, order_by_for_records=order_by_for_records)

Group By workflowVersions

Groups workflowVersions by specified fields and optionally computes aggregate values for each group.

Example

  • Bearer (JWT) Authentication (bearerAuth):
import twentycrm_client
from twentycrm_client.models.group_by_workflow_versions200_response import GroupByWorkflowVersions200Response
from twentycrm_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://crm.example.com/rest
# See configuration.py for a list of all supported configuration parameters.
configuration = twentycrm_client.Configuration(
    host = "https://crm.example.com/rest"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization (JWT): bearerAuth
configuration = twentycrm_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with twentycrm_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = twentycrm_client.WorkflowVersionsApi(api_client)
    group_by = '[{\"updatedAt\": true}]' # str | Array of fields to group by. Each element can specify a field and optionally a subfield or granularity for date fields.
    filter = 'createdAt[gte]:\"2023-01-01\"' # str | Format: field[COMPARATOR]:value,field2[COMPARATOR]:value2.     For like/ilike, use % as a wildcard (e.g. %value% for substring match).     Refer to the filter section at the top of the page for more details. (optional)
    order_by = 'createdAt' # str | Format: **field_name_1,field_name_2[DIRECTION_2]     Refer to the filter section at the top of the page for more details. (optional)
    limit = 60 # int | Limits the number of objects returned. (optional) (default to 60)
    view_id = UUID('38400000-8cf0-11bd-b23e-10b96e4ef00d') # UUID | View ID to apply filters from. (optional)
    aggregate = '[\"countNotEmptyId\"]' # str | Array of aggregate operations to compute for each group. (optional)
    include_records_sample = False # bool | If true, includes a sample of records for each group in the response. (optional) (default to False)
    order_by_for_records = 'createdAt' # str | Order by clause for records within each group. Only applicable when include_records_sample is true. (optional)

    try:
        # Group By workflowVersions
        api_response = api_instance.group_by_workflow_versions(group_by, filter=filter, order_by=order_by, limit=limit, view_id=view_id, aggregate=aggregate, include_records_sample=include_records_sample, order_by_for_records=order_by_for_records)
        print("The response of WorkflowVersionsApi->group_by_workflow_versions:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WorkflowVersionsApi->group_by_workflow_versions: %s\n" % e)

Parameters

Name Type Description Notes
group_by str Array of fields to group by. Each element can specify a field and optionally a subfield or granularity for date fields.
filter str Format: field[COMPARATOR]:value,field2[COMPARATOR]:value2. For like/ilike, use % as a wildcard (e.g. %value% for substring match). Refer to the filter section at the top of the page for more details. [optional]
order_by str Format: **field_name_1,field_name_2[DIRECTION_2] Refer to the filter section at the top of the page for more details. [optional]
limit int Limits the number of objects returned. [optional] [default to 60]
view_id UUID View ID to apply filters from. [optional]
aggregate str Array of aggregate operations to compute for each group. [optional]
include_records_sample bool If true, includes a sample of records for each group in the response. [optional] [default to False]
order_by_for_records str Order by clause for records within each group. Only applicable when include_records_sample is true. [optional]

Return type

GroupByWorkflowVersions200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Successful operation -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

merge_many_workflow_versions

MergeManyWorkflowVersions200Response merge_many_workflow_versions(merge_many_workflow_versions_request, depth=depth)

Merge Many workflowVersions

Example

  • Bearer (JWT) Authentication (bearerAuth):
import twentycrm_client
from twentycrm_client.models.merge_many_workflow_versions200_response import MergeManyWorkflowVersions200Response
from twentycrm_client.models.merge_many_workflow_versions_request import MergeManyWorkflowVersionsRequest
from twentycrm_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://crm.example.com/rest
# See configuration.py for a list of all supported configuration parameters.
configuration = twentycrm_client.Configuration(
    host = "https://crm.example.com/rest"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization (JWT): bearerAuth
configuration = twentycrm_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with twentycrm_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = twentycrm_client.WorkflowVersionsApi(api_client)
    merge_many_workflow_versions_request = twentycrm_client.MergeManyWorkflowVersionsRequest() # MergeManyWorkflowVersionsRequest | body
    depth = 1 # int | Determines the level of nested related objects to include in the response.     - 0: Primary object only     - 1: Primary object + direct relations (optional) (default to 1)

    try:
        # Merge Many workflowVersions
        api_response = api_instance.merge_many_workflow_versions(merge_many_workflow_versions_request, depth=depth)
        print("The response of WorkflowVersionsApi->merge_many_workflow_versions:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WorkflowVersionsApi->merge_many_workflow_versions: %s\n" % e)

Parameters

Name Type Description Notes
merge_many_workflow_versions_request MergeManyWorkflowVersionsRequest body
depth int Determines the level of nested related objects to include in the response. - 0: Primary object only - 1: Primary object + direct relations [optional] [default to 1]

Return type

MergeManyWorkflowVersions200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Successful operation -
400 Bad Request -
401 Unauthorized -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

restore_many_workflow_versions

RestoreManyWorkflowVersions200Response restore_many_workflow_versions(filter=filter, depth=depth)

Restore Many workflowVersions

Example

  • Bearer (JWT) Authentication (bearerAuth):
import twentycrm_client
from twentycrm_client.models.restore_many_workflow_versions200_response import RestoreManyWorkflowVersions200Response
from twentycrm_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://crm.example.com/rest
# See configuration.py for a list of all supported configuration parameters.
configuration = twentycrm_client.Configuration(
    host = "https://crm.example.com/rest"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization (JWT): bearerAuth
configuration = twentycrm_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with twentycrm_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = twentycrm_client.WorkflowVersionsApi(api_client)
    filter = 'createdAt[gte]:\"2023-01-01\"' # str | Format: field[COMPARATOR]:value,field2[COMPARATOR]:value2.     For like/ilike, use % as a wildcard (e.g. %value% for substring match).     Refer to the filter section at the top of the page for more details. (optional)
    depth = 1 # int | Determines the level of nested related objects to include in the response.     - 0: Primary object only     - 1: Primary object + direct relations (optional) (default to 1)

    try:
        # Restore Many workflowVersions
        api_response = api_instance.restore_many_workflow_versions(filter=filter, depth=depth)
        print("The response of WorkflowVersionsApi->restore_many_workflow_versions:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WorkflowVersionsApi->restore_many_workflow_versions: %s\n" % e)

Parameters

Name Type Description Notes
filter str Format: field[COMPARATOR]:value,field2[COMPARATOR]:value2. For like/ilike, use % as a wildcard (e.g. %value% for substring match). Refer to the filter section at the top of the page for more details. [optional]
depth int Determines the level of nested related objects to include in the response. - 0: Primary object only - 1: Primary object + direct relations [optional] [default to 1]

Return type

RestoreManyWorkflowVersions200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Successful operation -
400 Bad Request -
401 Unauthorized -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

restore_one_workflow_version

RestoreOneWorkflowVersion200Response restore_one_workflow_version(id, depth=depth)

Restore One workflowVersion

Example

  • Bearer (JWT) Authentication (bearerAuth):
import twentycrm_client
from twentycrm_client.models.restore_one_workflow_version200_response import RestoreOneWorkflowVersion200Response
from twentycrm_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://crm.example.com/rest
# See configuration.py for a list of all supported configuration parameters.
configuration = twentycrm_client.Configuration(
    host = "https://crm.example.com/rest"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization (JWT): bearerAuth
configuration = twentycrm_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with twentycrm_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = twentycrm_client.WorkflowVersionsApi(api_client)
    id = UUID('38400000-8cf0-11bd-b23e-10b96e4ef00d') # UUID | Object id.
    depth = 1 # int | Determines the level of nested related objects to include in the response.     - 0: Primary object only     - 1: Primary object + direct relations (optional) (default to 1)

    try:
        # Restore One workflowVersion
        api_response = api_instance.restore_one_workflow_version(id, depth=depth)
        print("The response of WorkflowVersionsApi->restore_one_workflow_version:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WorkflowVersionsApi->restore_one_workflow_version: %s\n" % e)

Parameters

Name Type Description Notes
id UUID Object id.
depth int Determines the level of nested related objects to include in the response. - 0: Primary object only - 1: Primary object + direct relations [optional] [default to 1]

Return type

RestoreOneWorkflowVersion200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Successful operation -
400 Bad Request -
401 Unauthorized -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

update_many_workflow_versions

UpdateManyWorkflowVersions200Response update_many_workflow_versions(workflow_version_for_update, depth=depth, filter=filter)

Update Many workflowVersions

Example

  • Bearer (JWT) Authentication (bearerAuth):
import twentycrm_client
from twentycrm_client.models.update_many_workflow_versions200_response import UpdateManyWorkflowVersions200Response
from twentycrm_client.models.workflow_version_for_update import WorkflowVersionForUpdate
from twentycrm_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://crm.example.com/rest
# See configuration.py for a list of all supported configuration parameters.
configuration = twentycrm_client.Configuration(
    host = "https://crm.example.com/rest"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization (JWT): bearerAuth
configuration = twentycrm_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with twentycrm_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = twentycrm_client.WorkflowVersionsApi(api_client)
    workflow_version_for_update = twentycrm_client.WorkflowVersionForUpdate() # WorkflowVersionForUpdate | body
    depth = 1 # int | Determines the level of nested related objects to include in the response.     - 0: Primary object only     - 1: Primary object + direct relations (optional) (default to 1)
    filter = 'createdAt[gte]:\"2023-01-01\"' # str | Format: field[COMPARATOR]:value,field2[COMPARATOR]:value2.     For like/ilike, use % as a wildcard (e.g. %value% for substring match).     Refer to the filter section at the top of the page for more details. (optional)

    try:
        # Update Many workflowVersions
        api_response = api_instance.update_many_workflow_versions(workflow_version_for_update, depth=depth, filter=filter)
        print("The response of WorkflowVersionsApi->update_many_workflow_versions:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WorkflowVersionsApi->update_many_workflow_versions: %s\n" % e)

Parameters

Name Type Description Notes
workflow_version_for_update WorkflowVersionForUpdate body
depth int Determines the level of nested related objects to include in the response. - 0: Primary object only - 1: Primary object + direct relations [optional] [default to 1]
filter str Format: field[COMPARATOR]:value,field2[COMPARATOR]:value2. For like/ilike, use % as a wildcard (e.g. %value% for substring match). Refer to the filter section at the top of the page for more details. [optional]

Return type

UpdateManyWorkflowVersions200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Successful operation -
400 Bad Request -
401 Unauthorized -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

update_one_workflow_version

UpdateOneWorkflowVersion200Response update_one_workflow_version(id, workflow_version_for_update, depth=depth)

Update One workflowVersion

Example

  • Bearer (JWT) Authentication (bearerAuth):
import twentycrm_client
from twentycrm_client.models.update_one_workflow_version200_response import UpdateOneWorkflowVersion200Response
from twentycrm_client.models.workflow_version_for_update import WorkflowVersionForUpdate
from twentycrm_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://crm.example.com/rest
# See configuration.py for a list of all supported configuration parameters.
configuration = twentycrm_client.Configuration(
    host = "https://crm.example.com/rest"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization (JWT): bearerAuth
configuration = twentycrm_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with twentycrm_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = twentycrm_client.WorkflowVersionsApi(api_client)
    id = UUID('38400000-8cf0-11bd-b23e-10b96e4ef00d') # UUID | Object id.
    workflow_version_for_update = twentycrm_client.WorkflowVersionForUpdate() # WorkflowVersionForUpdate | body
    depth = 1 # int | Determines the level of nested related objects to include in the response.     - 0: Primary object only     - 1: Primary object + direct relations (optional) (default to 1)

    try:
        # Update One workflowVersion
        api_response = api_instance.update_one_workflow_version(id, workflow_version_for_update, depth=depth)
        print("The response of WorkflowVersionsApi->update_one_workflow_version:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WorkflowVersionsApi->update_one_workflow_version: %s\n" % e)

Parameters

Name Type Description Notes
id UUID Object id.
workflow_version_for_update WorkflowVersionForUpdate body
depth int Determines the level of nested related objects to include in the response. - 0: Primary object only - 1: Primary object + direct relations [optional] [default to 1]

Return type

UpdateOneWorkflowVersion200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Successful operation -
400 Bad Request -
401 Unauthorized -

[Back to top] [Back to API list] [Back to Model list] [Back to README]