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