API & SDKs
Endpoint reference
Core HTTP endpoints for managing Relay Edge functions.
All Relay HTTP APIs use HTTPS, JSON bodies, and stable error codes. Paths are rooted at
https://api.relay-edge.example/v1.Functions
GET
/v1/functionsList deployed functions for the workspace.
| Parameter | Type | Description |
|---|---|---|
| region | string | Filter by region code |
| limit | integer | Page size (max 100) |
POST
/v1/functionsCreate or replace a function deployment.
| Parameter | Type | Description |
|---|---|---|
| name | string | Function name |
| digest | string | Bundle checksum |
GET
/v1/functions/{id}/invocationsFetch recent invocations for a function.
| Parameter | Type | Description |
|---|---|---|
| id | string | Function identifier |
Warning
Idempotency-Key headers are required for POST and PUT. Retries without them may create duplicate deployments.
