curl --request DELETE \
--url https://qwoty.app/api/payment-terms/{id} \
--header 'Authorization: <authorization>'{
"success": true,
"message": "Payment term deleted successfully"
}
Delete a payment term
curl --request DELETE \
--url https://qwoty.app/api/payment-terms/{id} \
--header 'Authorization: <authorization>'{
"success": true,
"message": "Payment term deleted successfully"
}
Documentation Index
Fetch the complete documentation index at: https://docs.qwoty.io/llms.txt
Use this file to discover all available pages before exploring further.
Bearer qwoty_your_tokencurl -X DELETE https://qwoty.app/api/payment-terms/550e8400-e29b-41d4-a716-446655440000 \
-H "Authorization: Bearer qwoty_your_token"
{
"success": true,
"message": "Payment term deleted successfully"
}
{
"success": false,
"error": "Payment term not found"
}
curl -X PUT https://qwoty.app/api/payment-terms/550e8400-e29b-41d4-a716-446655440000 \
-H "Authorization: Bearer qwoty_your_token" \
-H "Content-Type: application/json" \
-d '{
"is_active": false
}'
Was this page helpful?