Payments API now live! Read more at API Reference
curl --request PUT \
--url https://platform.usewarp.net/api/circom-files \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"files": [
{
"id": "<string>",
"content": "<string>"
}
]
}
'{
"message": "Files updated successfully"
}Update multiple Circom files
curl --request PUT \
--url https://platform.usewarp.net/api/circom-files \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"files": [
{
"id": "<string>",
"content": "<string>"
}
]
}
'{
"message": "Files updated successfully"
}Was this page helpful?