Interface IWorkflowsApiExecutor
Assembly: Crowdin.Api.dll
Syntax
[PublicAPI]
public interface IWorkflowsApiExecutor
Methods
|
Edit this page
View Source
GetWorkflowStep(long, long)
Declaration
Task<WorkflowStep> GetWorkflowStep(long projectId, long stepId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
stepId |
|
Returns
|
Edit this page
View Source
GetWorkflowTemplate(long)
Declaration
Task<WorkflowTemplate> GetWorkflowTemplate(long templateId)
Parameters
Type |
Name |
Description |
long |
templateId |
|
Returns
|
Edit this page
View Source
ListStringsOnTheWorkflowStep(long, long, StringsOnTheWorkflowStepListParams?)
Declaration
Task<ResponseList<SourceString>> ListStringsOnTheWorkflowStep(long projectId, long stepId, StringsOnTheWorkflowStepListParams? @params = null)
Parameters
Returns
|
Edit this page
View Source
ListStringsOnTheWorkflowStep(long, long, IEnumerable<string>?, IEnumerable<SortingRule>?, WorkflowStatus?, int?, int?)
Declaration
Task<ResponseList<SourceString>> ListStringsOnTheWorkflowStep(long projectId, long stepId, IEnumerable<string>? languageIds = null, IEnumerable<SortingRule>? orderBy = null, WorkflowStatus? status = null, int? limit = null, int? offset = null)
Parameters
Returns
|
Edit this page
View Source
ListWorkflowSteps(long)
Declaration
Task<ResponseList<WorkflowStep>> ListWorkflowSteps(long projectId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
Returns
|
Edit this page
View Source
ListWorkflowTemplates(long, int, int)
Declaration
Task<ResponseList<WorkflowTemplate>> ListWorkflowTemplates(long groupId, int limit = 25, int offset = 0)
Parameters
Type |
Name |
Description |
long |
groupId |
|
int |
limit |
|
int |
offset |
|
Returns