Skip to content

Commit

Permalink
Build docs 03/05/2024
Browse files Browse the repository at this point in the history
  • Loading branch information
jv-asana committed Mar 5, 2024
1 parent b21be0f commit 8814738
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 2 deletions.
33 changes: 32 additions & 1 deletion defs/asana_oas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10640,7 +10640,7 @@ paths:
in: query
required: true
description: >-
A resource ID to subscribe to. The resource can be a task or project.
A resource ID to subscribe to. The resource can be a task, project, or goal.
schema:
type: string
example: '12345'
Expand Down Expand Up @@ -34127,6 +34127,37 @@ paths:
except ApiException as e:
print("Exception when calling TaskTemplatesApi->get_task_template: %s\n" % e)
name: python-sdk-v5
delete:
summary: Delete a task template
description: >-
A specific, existing task template can be deleted by making a DELETE request
on the URL for that task template.
Returns an empty data record.
tags:
- Task templates
operationId: deleteTaskTemplate
responses:
200:
description: Successfully deleted the specified task template.
content:
application/json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/EmptyResponse'
400:
$ref: '#/components/responses/BadRequest'
401:
$ref: '#/components/responses/Unauthorized'
402:
$ref: '#/components/responses/PaymentRequired'
403:
$ref: '#/components/responses/Forbidden'
404:
$ref: '#/components/responses/NotFound'
500:
$ref: '#/components/responses/InternalServerError'
/task_templates/{task_template_gid}/instantiateTask:
parameters:
- $ref: '#/components/parameters/task_template_path_gid'
Expand Down
26 changes: 25 additions & 1 deletion defs/asana_sdk_oas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31676,7 +31676,7 @@ paths:
in: query
required: true
description: >-
A resource ID to subscribe to. The resource can be a task or project.
A resource ID to subscribe to. The resource can be a task, project, or goal.
schema:
type: string
example: '12345'
Expand Down Expand Up @@ -43266,6 +43266,30 @@ paths:
$ref: '#/components/responses/NotFound'
500:
$ref: '#/components/responses/InternalServerError'
delete:
summary: Delete a task template
description: >-
A specific, existing task template can be deleted by making a DELETE request
on the URL for that task template.
Returns an empty data record.
tags:
- Task templates
operationId: deleteTaskTemplate
responses:
200:
$ref: '#/components/responses/EmptyResponseData'
400:
$ref: '#/components/responses/BadRequest'
401:
$ref: '#/components/responses/Unauthorized'
402:
$ref: '#/components/responses/PaymentRequired'
403:
$ref: '#/components/responses/Forbidden'
404:
$ref: '#/components/responses/NotFound'
500:
$ref: '#/components/responses/InternalServerError'
/task_templates/{task_template_gid}/instantiateTask:
parameters:
- $ref: '#/components/parameters/task_template_path_gid'
Expand Down

0 comments on commit 8814738

Please sign in to comment.