POST
/
v2
/
payouts
/
recurring
/
{id}
Submit a recurring payment signature
curl --request POST \
  --url https://api.request.network/v2/payouts/recurring/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "permitSignature": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1b"
}'
{
"message": "Recurring payment activated successfully",
"id": "01JXYJKCAHGFTDR15F2D072ESG",
"status": "active"
}

Headers

x-api-key
string
required

API key for authentication

Path Parameters

id
string
required

The ID of the recurring payment

Example:

"01JXYJKCAHGFTDR15F2D072ESG"

Body

application/json
permitSignature
string
required

The signature of the recurring payment permit.

Response

Recurring payment signature submitted successfully

The response is of type any.