Skip to content

Latest commit

 

History

History
85 lines (62 loc) · 2.67 KB

WorkflowChangesApi.md

File metadata and controls

85 lines (62 loc) · 2.67 KB

phrasetms_client.WorkflowChangesApi

All URIs are relative to https://cloud.memsource.com/web

Method HTTP request Description
download_workflow_changes POST /api2/v2/jobs/workflowChanges Download workflow changes report

download_workflow_changes

Response download_workflow_changes(body=body)

Download workflow changes report

Example

import time
import os
import phrasetms_client
from phrasetms_client.models.response import Response
from phrasetms_client.models.workflow_changes_dto import WorkflowChangesDto
from phrasetms_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://cloud.memsource.com/web
# See configuration.py for a list of all supported configuration parameters.
configuration = phrasetms_client.Configuration(
    host = "https://cloud.memsource.com/web"
)


# Enter a context with an instance of the API client
with phrasetms_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = phrasetms_client.WorkflowChangesApi(api_client)
    body = phrasetms_client.WorkflowChangesDto() # WorkflowChangesDto |  (optional)

    try:
        # Download workflow changes report
        api_response = api_instance.download_workflow_changes(body=body)
        print("The response of WorkflowChangesApi->download_workflow_changes:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WorkflowChangesApi->download_workflow_changes: %s\n" % e)

Parameters

Name Type Description Notes
body WorkflowChangesDto [optional]

Return type

Response

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: text/html

HTTP response details

Status code Description Response headers
200 successful operation -
400 Bad request -
401 Not authorized -
403 Forbidden -
404 Resource not found -
405 Method not allowed -
408 Timeout -
410 Gone -
415 Unsupported media type -
429 Too many requests -
500 Internal server error -
501 Not implemented -

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