Skip to content

Create Programs

POST
/v3/ingest/programs/
curl --request POST \
--url https://example.com/v3/ingest/programs/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '[ { "created": "2026-04-15T12:00:00Z", "metadata": {}, "program_id": "example", "updated": "2026-04-15T12:00:00Z" } ]'
Media type application/json
Payload
Array<object>
ProgramIngestSchema
object
created
Created
string format: date-time
metadata
Any of:
object
program_id
required
Program Id
string
<= 64 characters /^[A-Za-z0-9\-\._]{1,64}$/
updated
Updated
string format: date-time
Example generated
[
{
"created": "2026-04-15T12:00:00Z",
"metadata": {},
"program_id": "example",
"updated": "2026-04-15T12:00:00Z"
}
]

OK