Update a Custom Field
PUThttps://useast.api.elasticpath.com/v2/settings/extensions/custom-apis/:custom_api_id/fields/:custom_field_id
Update a Custom Field
Request
Responses
- 200
- 400
- 404
- 409
- 500
OK
Bad request. The request failed validation.
Not found. The requested entity does not exist.
Unable to perform the operation at this time.
Internal server error. There was a system failure in the platform.
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/fields/:custom_field_id");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{\n \"data\": {\n \"type\": \"string\",\n \"name\": \"string\",\n \"description\": \"string\",\n \"slug\": \"string\",\n \"field_type\": \"string\",\n \"use_as_url_slug\": true,\n \"presentation\": {\n \"sort_order\": 10\n },\n \"validation\": {\n \"boolean\": {\n \"allow_null_values\": true\n }\n }\n }\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear