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

Headers

x-api-key
string

API key for authentication (optional if using Client ID)

x-client-id
string

Client ID for frontend authentication (optional if using API key)

Origin
string

Origin header (required for Client ID auth, automatically set by browser)

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.

I