Skip to main content

Create a Custom API

POST 

https://useast.api.elasticpath.com/v2/settings/extensions/custom-apis

Create a Custom API

Request

Body

    data CustomApiAttributesrequired
    type stringrequired

    Specifies the type of the resource object, use custom_api for Custom APIs.

    name stringrequired

    Possible values: non-empty and <= 255 characters

    Specifies the name of this Custom API.

    description string

    Possible values: <= 255 characters

    Specifies the description for this Custom API.

    slug stringrequired

    Possible values: Value must match regular expression ^[a-z0-9_-]{1,63}$

    Specifies a unique slug identifier for the Custom API. The API Entries for the created Custom API will be accessible at the location /v2/extensions/<slug>.

    api_type stringrequired

    Possible values: Value must match regular expression ^[a-z0-9_]{1,59}_ext$

    Specifies a unique API type for this Custom API. Entries for this API will use this value for their type field. This field must be suffixed with _ext to distinguish it from built in APIs.

    links object
    meta object
    timestamps objectrequired
    relationships object
    parent_apis objectrequired
    data object[]required
  • Array [
  • id stringrequired

    id

    type stringrequired

    Possible values: [custom_api, api_location]

    type, can be custom_api or api_location

  • ]

Responses

Created

Schema
    data objectrequired
    id uuid

    The unique identifier for the Custom API.

    type stringrequired

    Specifies the type of the resource object, use custom_api for Custom APIs.

    name stringrequired

    Possible values: non-empty and <= 255 characters

    Specifies the name of this Custom API.

    description string

    Possible values: <= 255 characters

    Specifies the description for this Custom API.

    slug stringrequired

    Possible values: Value must match regular expression ^[a-z0-9_-]{1,63}$

    Specifies a unique slug identifier for the Custom API. The API Entries for the created Custom API will be accessible at the location /v2/extensions/<slug>.

    api_type stringrequired

    Possible values: Value must match regular expression ^[a-z0-9_]{1,59}_ext$

    Specifies a unique API type for this Custom API. Entries for this API will use this value for their type field. This field must be suffixed with _ext to distinguish it from built in APIs.

    links objectrequired
    self uri

    Specifies the URI of the Custom API.

    meta object
    timestamps objectrequired
    updated_at stringrequired

    Specifies the date the entity is created.

    created_at stringrequired

    Specifies the date the entity is last updated.

    relationships objectrequired
    parent_apis objectrequired
    data object[]required
  • Array [
  • id stringrequired

    id

    type stringrequired

    Possible values: [custom_api, api_location]

    type, can be custom_api or api_location

  • ]

Authorization: http

name: bearerAuthtype: httpscheme: bearer
curl -L -X POST 'https://useast.api.elasticpath.com/v2/settings/extensions/custom-apis' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"data": {
"type": "string",
"name": "string",
"description": "string",
"slug": "string",
"api_type": "string"
}
}'
Request Collapse all
Base URL
https://useast.api.elasticpath.com
Auth
Body
{
  "data": {
    "type": "string",
    "name": "string",
    "description": "string",
    "slug": "string",
    "api_type": "string"
  }
}
ResponseClear

Click the Send API Request button above and see the response here!