Skip to main content
PUT
/
api
/
circom-files
Update 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"
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Body

application/json
files
object[]
required

Array of files to update

Response

Circom files updated successfully

message
string
Example:

"Files updated successfully"