Create a Custom API Entry using the settings endpoint
POSThttps://useast.api.elasticpath.com/v2/settings/extensions/custom-apis/:custom_api_id/entries
Create a Custom API Entry using the settings endpoint
Request
Responses
- 201
- 400
- 403
- 409
- 413
- 500
- 503
Created
Response Headers
Bad request. The request failed validation.
Forbidden. You do not have permission to access this resource.
Unable to perform the operation at this time.
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.Post, "https://useast.api.elasticpath.com/v2/settings/extensions/custom-apis/:custom_api_id/entries");
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