{ "opencollection": "1.0.0", "info": { "name": "Flowable REST Access Tokens Form Deployments API", "version": "v1" }, "items": [ { "info": { "name": "Form Deployments", "type": "folder" }, "items": [ { "info": { "name": "List of Form Deployments", "type": "http" }, "http": { "method": "GET", "url": "/flowable-rest/service/form-repository/deployments", "params": [ { "name": "name", "value": "", "type": "query", "description": "Only return form deployments with the given name." }, { "name": "nameLike", "value": "", "type": "query", "description": "Only return form deployments with a name like the given name." }, { "name": "category", "value": "", "type": "query", "description": "Only return form deployments with the given category." }, { "name": "categoryNotEquals", "value": "", "type": "query", "description": "Only return form deployments which don’t have the given category." }, { "name": "parentDeploymentId", "value": "", "type": "query", "description": "Only return form deployments with the given parent deployment id." }, { "name": "tenantId", "value": "", "type": "query", "description": "Only return form deployments with the given tenantId." }, { "name": "tenantIdLike", "value": "", "type": "query", "description": "Only return form deployments with a tenantId like the given value." }, { "name": "withoutTenantId", "value": "", "type": "query", "description": "If true, only returns form deployments without a tenantId set. If false, the withoutTenantId parameter is ignored." }, { "name": "sort", "value": "", "type": "query", "description": "Property to sort on, to be used together with the order." } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "List of Form Deployments" }, { "info": { "name": "Create a new form deployment", "type": "http" }, "http": { "method": "POST", "url": "/flowable-rest/service/form-repository/deployments", "params": [ { "name": "tenantId", "value": "", "type": "query" } ], "body": { "type": "multipart-form", "data": [ { "name": "file", "type": "text", "value": "" } ] }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "The request body should contain data of type multipart/form-data. There should be exactly one file in the request, any additional files will be ignored. The deployment name is the name of the file-field passed in. Make sure the file-name ends with .form or .xml." }, { "info": { "name": "Get a form deployment", "type": "http" }, "http": { "method": "GET", "url": "/flowable-rest/service/form-repository/deployments/:deploymentId", "params": [ { "name": "deploymentId", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get a form deployment" }, { "info": { "name": "Delete a form deployment", "type": "http" }, "http": { "method": "DELETE", "url": "/flowable-rest/service/form-repository/deployments/:deploymentId", "params": [ { "name": "deploymentId", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Delete a form deployment" }, { "info": { "name": "Get a form deployment resource content", "type": "http" }, "http": { "method": "GET", "url": "/flowable-rest/service/form-repository/deployments/:deploymentId/resourcedata/:resourceName", "params": [ { "name": "deploymentId", "value": "", "type": "path" }, { "name": "resourceName", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "The response body will contain the binary resource-content for the requested resource. The response content-type will be the same as the type returned in the resources mimeType property. Also, a content-disposition header is set, allowing browsers to download the file instead of displaying it." } ] } ], "bundled": true }