Resource: Temporary Attachment Set ( /api/temporaryattachmentset/{id} )
Provides the mechanism for retrieving a list of attachments in a set, or adding new attachments to the set.
This resource supports the following methods: GET, POST
Methods
GET
Retrieves a list of attachments in the temporary attachment set.
This method supports the OData parameters $filter, $top, $take, $orderby and $inlinecount. See OData Topic for more details.
Status Codes
These are the expected status codes returned by the service. In addition, some other status codes may be returned if either an internal error occurs or there is an authentication issue (such as an expired OAuth token).
Status | Description |
---|---|
200 - OK | Returned if the request is completed successfully. |
Retrieves a list of all attachments associated with a temporary attachment set.
Request Headers
Key | Value | Description |
---|---|---|
Accept | application/json |
Request Parameters
Key | Value | Description |
---|---|---|
{id} | 4bb709c2-e0e7-4af3-9f60-a045016a9610 | Unique identifier of the temporary attachment set. |
Response Headers
Key | Value | Description |
---|---|---|
Content-Type | application/json; charset=utf-8 |
Response Body
{ "Items": [ { "TemporaryId": "4bb709c2-e0e7-4af3-9f60-a045016a9610", "Id": "00000000-0000-0000-0000-000000000000", "Name": "Test Image", "FileName": "test.png", "ContentType": "image/png", "CreatedAt": "2015-12-16T07:40:18Z", "CreatedById": "2b364daa-0dff-4a6f-8554-f5963d3011be", "Size": 122454, "Self": "http://localhost/api/temporaryattachmentset/4bb709c2-e0e7-4af3-9f60-a045016a9610/attachment/00000000-0000-0000-0000-000000000000", "Content": "http://localhost/api/attachment/00000000-0000-0000-0000-000000000000/contents" }, { "TemporaryId": "4bb709c2-e0e7-4af3-9f60-a045016a9610", "Id": "00000000-0000-0000-0000-000000000000", "Name": "Test Image 2", "FileName": "test2.png", "ContentType": "image/png", "CreatedAt": "2015-12-16T07:40:18Z", "CreatedById": "2b364daa-0dff-4a6f-8554-f5963d3011be", "Size": 23132, "Self": "http://localhost/api/temporaryattachmentset/4bb709c2-e0e7-4af3-9f60-a045016a9610/attachment/00000000-0000-0000-0000-000000000000", "Content": "http://localhost/api/attachment/00000000-0000-0000-0000-000000000000/contents" } ] }
Status Code
201 - Created
POST
Upload one or more attachments.
Status Codes
These are the expected status codes returned by the service. In addition, some other status codes may be returned if either an internal error occurs or there is an authentication issue (such as an expired OAuth token).
Status | Description |
---|---|
201 - Created | Returned if attachments were uploaded successfully. |
403 - Forbidden | Returned if the multipart request did not contain any files. |
415 - UnsupportedMediaType | Returned if the request is not mime multipart. |
Uploads one or more files using a mime multipart request. This example shows a response where two files were uploaded.
Request Headers
Key | Value | Description |
---|---|---|
Content-Type | multipart/mixed; boundary=65bf6b94-c91c-442c-abe7-f41444d7c71f |
Request Parameters
Key | Value | Description |
---|---|---|
{id} | 4bb709c2-e0e7-4af3-9f60-a045016a9610 | Unique identifier of the temporary attachment set. |
Request Body
--65bf6b94-c91c-442c-abe7-f41444d7c71f Content-Disposition: attachment; filename=screenshot1.png; name="screenshot 1"; size=122454 Content-Type: image/png Content-Length: 3 ... --65bf6b94-c91c-442c-abe7-f41444d7c71f Content-Disposition: attachment; filename=notes.txt; name=notes; size=3 Content-Type: text/plain Content-Length: 3 ABC --65bf6b94-c91c-442c-abe7-f41444d7c71f--
Response Headers
Key | Value | Description |
---|---|---|
Content-Type | application/json; charset=utf-8 |
Response Body
[ { "TemporaryId": "4bb709c2-e0e7-4af3-9f60-a045016a9610", "Id": "00000000-0000-0000-0000-000000000000", "Name": "screenshot 1", "FileName": "screenshot1.png", "ContentType": "image/png", "CreatedAt": "2012-01-01T14:04:05Z", "CreatedById": "2b364daa-0dff-4a6f-8554-f5963d3011be", "Size": 122454, "Self": "http://localhost/api/temporaryattachmentset/4bb709c2-e0e7-4af3-9f60-a045016a9610/attachment/00000000-0000-0000-0000-000000000000", "Content": "http://localhost/api/attachment/00000000-0000-0000-0000-000000000000/contents" }, { "TemporaryId": "4bb709c2-e0e7-4af3-9f60-a045016a9610", "Id": "00000000-0000-0000-0000-000000000000", "Name": "notes.txt", "FileName": "notes", "ContentType": "text/plain", "CreatedAt": "2012-01-01T14:04:05Z", "CreatedById": "2b364daa-0dff-4a6f-8554-f5963d3011be", "Size": 3, "Self": "http://localhost/api/temporaryattachmentset/4bb709c2-e0e7-4af3-9f60-a045016a9610/attachment/00000000-0000-0000-0000-000000000000", "Content": "http://localhost/api/attachment/00000000-0000-0000-0000-000000000000/contents" } ]
Status Code
201 - Created