addAttachmentsLinked

Click to copy

Add linked attachments to a job

Add linked attachments to a job to provide additional or support information related to the job. Linked attachments can be links to a file on a local or shared file system or a URL. The jobUpdateAttachments privilege is required to add an attachment to a job.

Body parameter

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
{
  "attachments": [
    {
      "url": "string",
      "alias": "string",
      "folder": "string"
    }
  ],
  "stepId": "string"
}

Query parameters

NameTypeRequired

token

string

Path parameters

NameTypeRequired

jobId

string

orgId

string

itemId

string

Examples

Request

Use dark colors for code blocksCopy
1
2
3
4
5
# You can also use wget
curl -X POST /{orgId}/{itemId}/jobs/{jobId}/attachmentslinked \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

Response

200 Response

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
{
  "attachments": [
    {
      "alias": "string",
      "attachmentId": "string"
    }
  ]
}
StatusMeaningDescriptionSchema

200

OK

List of added attachments

Inline

400

Bad Request

error

WorkflowExceptionDTO

Response details

Status Code 200

JobAttachmentLinkedResults

NameTypeRequired

attachments

alias

string

attachmentId

string

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.