Skip to main content

Pay

POST /v1/campaigns/customers/{customer_id}/campaigns/{id}/pay

Starts the payment process for an existing campaign. Returns a link where the user can make the payment. Once the payment is successful the user is redirected to the redirect_uri query parameter.

Path Parameters

customer_id
integer
Required

The id of the customer.

Query Parameters

redirect_uri
url
Required

The URL to redirect to when the payment process is finished.

Example Request
curl -X POST https://api.realmailers.com/v1/campaigns/customers/{customer_id}/campaigns/{id}/pay \
-H 'Authorization: Bearer YOUR_API_KEY' \
-d "redirect_uri"="https//www.example.com/payment_finished"
Response Schema
{
link: URL
}