Skip to content

Create new record.

POST
/api/records/v1/{name}
curl --request POST \
--url https://example.com/api/records/v1/example \
--header 'Content-Type: application/json' \
--data '"example"'
name
required
string
redirect_uri
string | null

Redirect user to this address upon successful record creation. This only exists to support insertions via static HTML form actions.

We may want to have a different on-error redirect to better support the static HTML use-case.

Media type application/json
Example generated
example

Ids of successfully created records.

Media type application/json
object
ids
required

Url-Safe base64 encoded ids of the newly created record.

Array<string>
Example generated
{
"ids": [
"example"
]
}