api request rest (Beta)
Make an authenticated HTTP request using the Salesforce REST API.
This feature is a Beta Service. Customers may opt to try such Beta Service in its sole discretion. Any use of the Beta Service is subject to the applicable Beta Services Terms provided at Agreements and Terms.
When sending the HTTP request with the “–body” flag, you can specify the request directly at the command line or with a file that contains the request.
For a full list of supported REST endpoints and resources, see https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_list.htm.
| Flag Name (Long) | Flag Name (Short) | Description |
|---|---|---|
‑‑body | ‑b | Type: Value File or content for the body of the HTTP request. Specify ”-” to read from standard input or "" for an empty body. If passing a file, prefix the filename with ’@’. |
‑‑file | ‑f | Type: Value JSON file that contains values for the request header, body, method, and URL. Use this flag instead of specifying the request details with individual flags, such as –body or –method. This schema defines how to create the JSON file: { url: { raw: string } | string; method: ‘GET’, ‘POST’, ‘PUT’, ‘PATCH’, ‘HEAD’, ‘DELETE’, ‘OPTIONS’, ‘TRACE’; description?: string; header: string | Array<Record<string, string>>; body: { mode: ‘raw’ | ‘formdata’; raw: string; formdata: FormData }; } Salesforce CLI defined this schema to be mimic Postman schemas; both share similar properties. The CLI’s schema also supports Postman Collections to reuse and share requests. As a result, you can build an API call using Postman, export and save it to a file, and then use the file as a value to this flag. For information about Postman, see https://learning.postman.com/. Here’s a simple example of a JSON file that contains values for the request URL, method, and body: { “url”: “sobjects/Account/<Account ID>”, “method”: “PATCH”, “body” : { “mode”: “raw”, “raw”: { “BillingCity”: “Boise” } } } See more examples in the plugin-api test directory, including JSON files that use “formdata” to define collections: https://github.com/salesforcecli/plugin-api/tree/main/test/test-files/data-project. |
‑‑flags‑dir | N/A | Type: Value Import flag values from a directory. |
‑‑header | ‑H | Type: Value HTTP header in “key:value” format. |
‑‑include | ‑i | Type: Boolean Include the HTTP response status and headers in the output. |
‑‑method | ‑X | Type: Value Valid Values: GET, POST, PUT, PATCH, HEAD, DELETE, OPTIONS, TRACEHTTP method for the request. |
‑‑stream‑to‑file | ‑S | Type: Value Stream responses to a file. |
‑‑target‑org | ‑o | Type: Value Required Username or alias of the target org. Not required if the target-org configuration variable is already set. |
List information about limits in the org with alias “my-org”:
List all endpoints in your default org; write the output to a file called “output.txt” and include the HTTP response status and headers:
Get the response in XML format by specifying the “Accept” HTTP header:
Create an account record using the POST method; specify the request details directly in the “–body” flag:
Create an account record using the information in a file called “info.json” (note the @ prefixing the file name):
Update an account record using the PATCH method:
Store the values for the request header, body, and so on, in a file, which you then specify with the –file flag; see the description of –file for more information: