Update a Custom API Entry using the settings endpoint
PUThttps://useast.api.elasticpath.com/v2/settings/extensions/custom-apis/:custom_api_id/entries/:custom_api_entry_id
Update a Custom API Entry using the settings endpoint
Request
Responses
- 200
- 201
- 400
- 403
- 404
- 409
- 412
- 413
- 500
- 503
OK
Response Headers
Created
Response Headers
Bad request. The request failed validation.
Forbidden. You do not have permission to access this resource.
Not found. The requested entity does not exist.
Unable to perform the operation at this time.
Precondition Failed.
Payload Too Large. The total size of a Custom API Entry must not exceed 64KB.
Internal server error. There was a system failure in the platform.
The service is temporarily unavailable. This request can be safely retried.
Authorization: http
name: bearerAuthtype: httpscheme: bearer
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Put, "https://useast.api.elasticpath.com/v2/settings/extensions/custom-apis/:custom_api_id/entries/:custom_api_entry_id");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{\n \"data\": {\n \"type\": \"string\"\n }\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear