patch
https://app.360learning.com/api/v2/paths/
Required OAuth scope:
paths:write.
Edits specific fields of an existing path. Fields not included in the request payload remain unchanged.
This endpoint requires
multipart/form-data.
- Content-Type:
multipart/form-data- Arrays: Use bracket notation, with the field name repeated for each item
- Objects: Use JSON-encoded strings
The request preview (the Try it! button on the right panel that generates an example request) may not fully reflect multipart formatting requirements. Instead, use the example below:
curl --request PATCH \
--url https://qlf:8443/api/v2/paths/631af11efb8a393e63cd1a0b \
--header '360-api-version: v2.0' \
--header 'authorization: Bearer {{token}}' \
--header 'content-type: multipart/form-data' \
--form 'coAuthorIds[]=624c5526204fc7207e603ea5' \
--form 'coAuthorIds[]=624c5526204fc7207e603eb8' \
--form 'estimatedWeeklyCommitment={"min": 2, "max":9}' \
--form coverPicture=@/home/qlf/Images/starfish.jpg \
--form 'options={"displayForum": true, "linearProgression": true}'
