Skip to content

Fix the Content-Range header #1495

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 18, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "File attributes (Common Data Service) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
description: "Learn about File attributes that store file data within the application, supporting attributes, retrieving data, and uploading file data." # 115-145 characters including spaces. This abstract displays in the search result.
ms.custom: ""
ms.date: 05/08/2020
ms.date: 06/17/2020
ms.reviewer: "pehecke"
ms.service: powerapps
ms.topic: "article"
Expand Down Expand Up @@ -63,7 +63,7 @@ Messages such as <xref:Microsoft.Xrm.Sdk.Messages.RetrieveRequest> and <xref:Mic
```http
GET [Organization URI]/api/data/v9.1/accounts(id)/myfileattribute/$value
Headers:
Range: 0-1023/8192
Range: bytes=0-1023/8192
```

**Response**
Expand Down Expand Up @@ -166,7 +166,7 @@ Location: api/data/v9.1/accounts(id)/myfileattribute?FileContinuationToken
PATCH [Organization URI]/api/data/v9.1/accounts(id)/myfileattribute?FileContinuationToken

Headers:
Content-Range: 0-4095/8192
Content-Range: bytes 0-4095/8192
Content-Type: application/octet-stream
x-ms-file-name: sample.png

Expand Down