cURL
curl --request PATCH \ --url https://www.ruddr.io/api/workspace/payment-methods/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "isActive": true } '
200
Result
{ "id": "a1b2c3d4-e5f6-4789-a012-b3c4d5e6f7a8", "name": "Wire Transfer", "isActive": true, "createdAt": "2025-03-10T14:22:45.183Z" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The payment method uuid
uuid
The name of the payment method.
Whether the payment method is active.
The unique identifier for the object.
The timestamp when the object was created.