Sources

Create custom source

Create a new custom source for the authenticated account.

⚠️ Beta Version: This endpoint is in beta and may be subject to changes in future releases.

post/v1/sources/custom-sources

Request body

namestring required

The name of the custom source

descriptionstring nullable

The description of the custom source

Example request

{
  "name": "My Custom Source",
  "description": "A custom source for testing purposes"
}

Response

Custom source created successfully

idstring

The ID of the custom source

source_uuidstring

Unique identifier for the custom source

namestring

The name of the custom source

descriptionstring nullable

The description of the custom source

Example response

{
  "id": "123",
  "source_uuid": "550e8400-e29b-41d4-a716-446655440000",
  "name": "My Custom Source",
  "description": "A custom source for testing purposes"
}

Changes