curl --request POST \
--url https://api.example.com/api/v1/projects/{project_id}/sources \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"Type": "IMAGE",
"Source": {
"Type": "TEXT",
"Source": "<string>"
},
"Description": "<string>",
"IngestionStatus": "PENDING"
}
'