From 4b55d5ba932ca157b604639f2df4ac829f4f90f2 Mon Sep 17 00:00:00 2001 From: Simon Sabin <1209963+simonsabin@users.noreply.github.com> Date: Tue, 15 Jul 2025 14:45:09 +0100 Subject: [PATCH] Clarify type and contents for payload Remove confusing duplication of referencing JSON, XML and TEXT, the caps imply the "type" rather than the contents of the string. Given the contents can be text not really sure what the point of the saying it has to be well formed json, xml or text. If that is, because the type is checked and the content-type set according to what is determined. The it should say so --- .../sp-invoke-external-rest-endpoint-transact-sql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/relational-databases/system-stored-procedures/sp-invoke-external-rest-endpoint-transact-sql.md b/docs/relational-databases/system-stored-procedures/sp-invoke-external-rest-endpoint-transact-sql.md index 9645dabcafb..7088e2e3054 100644 --- a/docs/relational-databases/system-stored-procedures/sp-invoke-external-rest-endpoint-transact-sql.md +++ b/docs/relational-databases/system-stored-procedures/sp-invoke-external-rest-endpoint-transact-sql.md @@ -66,7 +66,7 @@ URL of the HTTPS REST endpoint to be called. *@url* is **nvarchar(4000)** with n #### [ @payload = ] N'*request_payload*' -Unicode string in a JSON, XML, or TEXT format that contains the payload to send to the HTTPS REST endpoint. Payloads must be a valid JSON document, a well formed XML document, or text. *@payload* is **nvarchar(max)** with no default. +The payload to send to the HTTPS REST endpoint. Must be a valid JSON document, a well formed XML document, or text. *@payload* is **nvarchar(max)** type with no default. #### [ @headers = ] N'*headers*'