...
Attach File Manager For Jira provides a REST API to enable you to retrieve an image and attach a docuement from an URL outside of the Jira context.
Attach File :
You will need to perform an HTTP Post on the following URL :
Bloc de code |
---|
<Base-URL>/rest/kepler/1.0/file-attach/base64 |
Body :
Bloc de code |
---|
{
"attachedFiles":[
{
"filename":filename1,
"customfieldId":customfield_id,
"issueKey":issueKey,
"content":fileAsBase64
}, ......
]
} |
Retreive file:
Base URL
The base URL to call the file Attach File Manager For Jira is:
...