Skip to content

Commit f4b7bb2

Browse files
committed
Merge branch 'master' into v-ljoel-perspectives
2 parents 2113a79 + f85c1f1 commit f4b7bb2

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

powerapps-docs/developer/data-platform/custom-api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Create and use Custom APIs (Microsoft Dataverse) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
33
description: "Custom API is a new code-first way to define custom messages for the Microsoft Dataverse" # 115-145 characters including spaces. This abstract displays in the search result.
44
ms.custom: ""
5-
ms.date: 03/13/2021
5+
ms.date: 03/22/2021
66
ms.reviewer: "pehecke"
77
ms.service: powerapps
88
ms.topic: "article"
@@ -68,7 +68,7 @@ See the following topics for detailed information about the columns/attributes y
6868

6969
- [CustomAPI Table Columns](customapi-table-columns.md)
7070
- [CustomAPIRequestParameter Table Columns](customapirequestparameter-table-columns.md)
71-
- [CustomAPIRequestParameter Table Columns](customapirequestparameter-table-columns.md)
71+
- [CustomAPIResponseProperty Table Columns](customapiresponseproperty-table-columns.md)
7272

7373

7474
## Invoking Custom APIs
@@ -477,7 +477,7 @@ A: You cannot. Although these records have the common **Status** and **Status Re
477477

478478
### Q: How can I use my private messages if they are not included in the Web API $metadata service document?
479479

480-
A: Yes. Your private messages will work regardless of whether they are advertised in the Web API [CSDL $metadata document](webapi/web-api-types-operations.md#csdl-metadata-document) or not. While you develop your solution, you can leave the `IsPrivate` value set to `false`. This way you can refer to the `$metadata` listing and use code generation tools that depend on this data. However, you should set the `CustomAPI.IsPrivate` value to `false` before you ship your solution for others to use. If you later decide that you wish to support other applications to use the message, you can change the `CustomAPI.IsPrivate` value to `true`.
480+
A: Yes. Your private messages will work regardless of whether they are advertised in the Web API [CSDL $metadata document](webapi/web-api-types-operations.md#csdl-metadata-document) or not. While you develop your solution, you can leave the `IsPrivate` value set to `false`. This way you can refer to the `$metadata` listing and use code generation tools that depend on this data. However, you should set the `CustomAPI.IsPrivate` value to `true` before you ship your solution for others to use. If you later decide that you wish to support other applications to use the message, you can change the `CustomAPI.IsPrivate` value to `false`.
481481

482482
More information: [Private Messages](org-service/use-messages.md#private-messages) and [Private messages cannot be used in plug-ins](#private-messages-cannot-be-used-in-plug-ins)
483483

@@ -519,4 +519,4 @@ If you define your custom API to be private, you cannot use that message in a pl
519519
[CustomAPIRequestParameter Table Columns](customapirequestparameter-table-columns.md)<br />
520520
[CustomAPIRequestParameter Table Columns](customapirequestparameter-table-columns.md)
521521

522-
[!INCLUDE[footer-include](../../includes/footer-banner.md)]
522+
[!INCLUDE[footer-include](../../includes/footer-banner.md)]

powerapps-docs/developer/data-platform/webapi/create-entity-web-api.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ To create a new entity record you must identify the valid property names and typ
7373

7474
## Create with data returned
7575

76-
You can compose your `POST` request so that data from the created record will be returned with a status of `201 (Created)`. To get his result, you must use the `return=representation` preference in the request headers.
76+
You can compose your `POST` request so that data from the created record will be returned with a status of `201 (Created)`. To get this result, you must use the `return=representation` preference in the request headers.
7777

7878
To control which properties are returned, append the `$select` query option to the URL to the entity set. You may also use `$expand` to return related entities.
7979

@@ -347,4 +347,5 @@ More information: [Access documents faster using storage partitions](azure-stora
347347
[Impersonate another user using the Web API](impersonate-another-user-web-api.md)<br />
348348
[Perform conditional operations using the Web API](perform-conditional-operations-using-web-api.md)<br />
349349

350-
[!INCLUDE[footer-include](../../../includes/footer-banner.md)]
350+
[!INCLUDE[footer-include](../../../includes/footer-banner.md)]
351+

0 commit comments

Comments
 (0)