curl --request POST \
--url https://gateway-api.sandbox.paymove.io/api/pay/plugin/webhook \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"name": "PaymentSuccessHook",
"endpoint": "https://example.com/webhooks/payment-success",
"method": "POST",
"requestTemplate": {
"productId": "productId",
"event": "event"
},
"responseTemplate": {
"status": "ok"
},
"expectedCode": 200,
"expectedResponse": "{ \"status\": \"ok\" }",
"retries": 3,
"partnerId": "78562c79-2f5c-4415-8af4-c871eea92ef2",
"type": "PAYMENT",
"headers": {
"Authorization": [
"Bearer abc123"
],
"Content-Type": [
"application/json"
]
}
}
'import requests
url = "https://gateway-api.sandbox.paymove.io/api/pay/plugin/webhook"
payload = {
"name": "PaymentSuccessHook",
"endpoint": "https://example.com/webhooks/payment-success",
"method": "POST",
"requestTemplate": {
"productId": "productId",
"event": "event"
},
"responseTemplate": { "status": "ok" },
"expectedCode": 200,
"expectedResponse": "{ \"status\": \"ok\" }",
"retries": 3,
"partnerId": "78562c79-2f5c-4415-8af4-c871eea92ef2",
"type": "PAYMENT",
"headers": {
"Authorization": ["Bearer abc123"],
"Content-Type": ["application/json"]
}
}
headers = {
"X-API-KEY": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-KEY': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'PaymentSuccessHook',
endpoint: 'https://example.com/webhooks/payment-success',
method: 'POST',
requestTemplate: {productId: 'productId', event: 'event'},
responseTemplate: {status: 'ok'},
expectedCode: 200,
expectedResponse: '{ "status": "ok" }',
retries: 3,
partnerId: '78562c79-2f5c-4415-8af4-c871eea92ef2',
type: 'PAYMENT',
headers: {Authorization: ['Bearer abc123'], 'Content-Type': ['application/json']}
})
};
fetch('https://gateway-api.sandbox.paymove.io/api/pay/plugin/webhook', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://gateway-api.sandbox.paymove.io/api/pay/plugin/webhook",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'PaymentSuccessHook',
'endpoint' => 'https://example.com/webhooks/payment-success',
'method' => 'POST',
'requestTemplate' => [
'productId' => 'productId',
'event' => 'event'
],
'responseTemplate' => [
'status' => 'ok'
],
'expectedCode' => 200,
'expectedResponse' => '{ "status": "ok" }',
'retries' => 3,
'partnerId' => '78562c79-2f5c-4415-8af4-c871eea92ef2',
'type' => 'PAYMENT',
'headers' => [
'Authorization' => [
'Bearer abc123'
],
'Content-Type' => [
'application/json'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://gateway-api.sandbox.paymove.io/api/pay/plugin/webhook"
payload := strings.NewReader("{\n \"name\": \"PaymentSuccessHook\",\n \"endpoint\": \"https://example.com/webhooks/payment-success\",\n \"method\": \"POST\",\n \"requestTemplate\": {\n \"productId\": \"productId\",\n \"event\": \"event\"\n },\n \"responseTemplate\": {\n \"status\": \"ok\"\n },\n \"expectedCode\": 200,\n \"expectedResponse\": \"{ \\\"status\\\": \\\"ok\\\" }\",\n \"retries\": 3,\n \"partnerId\": \"78562c79-2f5c-4415-8af4-c871eea92ef2\",\n \"type\": \"PAYMENT\",\n \"headers\": {\n \"Authorization\": [\n \"Bearer abc123\"\n ],\n \"Content-Type\": [\n \"application/json\"\n ]\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://gateway-api.sandbox.paymove.io/api/pay/plugin/webhook")
.header("X-API-KEY", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"PaymentSuccessHook\",\n \"endpoint\": \"https://example.com/webhooks/payment-success\",\n \"method\": \"POST\",\n \"requestTemplate\": {\n \"productId\": \"productId\",\n \"event\": \"event\"\n },\n \"responseTemplate\": {\n \"status\": \"ok\"\n },\n \"expectedCode\": 200,\n \"expectedResponse\": \"{ \\\"status\\\": \\\"ok\\\" }\",\n \"retries\": 3,\n \"partnerId\": \"78562c79-2f5c-4415-8af4-c871eea92ef2\",\n \"type\": \"PAYMENT\",\n \"headers\": {\n \"Authorization\": [\n \"Bearer abc123\"\n ],\n \"Content-Type\": [\n \"application/json\"\n ]\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://gateway-api.sandbox.paymove.io/api/pay/plugin/webhook")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"PaymentSuccessHook\",\n \"endpoint\": \"https://example.com/webhooks/payment-success\",\n \"method\": \"POST\",\n \"requestTemplate\": {\n \"productId\": \"productId\",\n \"event\": \"event\"\n },\n \"responseTemplate\": {\n \"status\": \"ok\"\n },\n \"expectedCode\": 200,\n \"expectedResponse\": \"{ \\\"status\\\": \\\"ok\\\" }\",\n \"retries\": 3,\n \"partnerId\": \"78562c79-2f5c-4415-8af4-c871eea92ef2\",\n \"type\": \"PAYMENT\",\n \"headers\": {\n \"Authorization\": [\n \"Bearer abc123\"\n ],\n \"Content-Type\": [\n \"application/json\"\n ]\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "18e19688-bdda-4843-8777-0f04d0143c77",
"name": "PaymentSuccessHook",
"endpoint": "https://example.com/webhooks/payment-success",
"method": "POST",
"requestTemplate": {
"productId": "productId",
"event": "event"
},
"responseTemplate": {
"status": "ok"
},
"expectedCode": 200,
"expectedResponse": "{ \"status\": \"ok\" }",
"retries": 3,
"type": "PAYMENT",
"headers": {
"Authorization": [
"Bearer abc123"
],
"Content-Type": [
"application/json"
]
},
"signingSecret": "whsec_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}Zarejestruj webhook
Rejestruje webhook — adres URL po Twojej stronie, który Paymove wywołuje po zakończonej płatności. Po rejestracji webhook musi zostać przypisany do produktu osobnym wywołaniem.
curl --request POST \
--url https://gateway-api.sandbox.paymove.io/api/pay/plugin/webhook \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"name": "PaymentSuccessHook",
"endpoint": "https://example.com/webhooks/payment-success",
"method": "POST",
"requestTemplate": {
"productId": "productId",
"event": "event"
},
"responseTemplate": {
"status": "ok"
},
"expectedCode": 200,
"expectedResponse": "{ \"status\": \"ok\" }",
"retries": 3,
"partnerId": "78562c79-2f5c-4415-8af4-c871eea92ef2",
"type": "PAYMENT",
"headers": {
"Authorization": [
"Bearer abc123"
],
"Content-Type": [
"application/json"
]
}
}
'import requests
url = "https://gateway-api.sandbox.paymove.io/api/pay/plugin/webhook"
payload = {
"name": "PaymentSuccessHook",
"endpoint": "https://example.com/webhooks/payment-success",
"method": "POST",
"requestTemplate": {
"productId": "productId",
"event": "event"
},
"responseTemplate": { "status": "ok" },
"expectedCode": 200,
"expectedResponse": "{ \"status\": \"ok\" }",
"retries": 3,
"partnerId": "78562c79-2f5c-4415-8af4-c871eea92ef2",
"type": "PAYMENT",
"headers": {
"Authorization": ["Bearer abc123"],
"Content-Type": ["application/json"]
}
}
headers = {
"X-API-KEY": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-KEY': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'PaymentSuccessHook',
endpoint: 'https://example.com/webhooks/payment-success',
method: 'POST',
requestTemplate: {productId: 'productId', event: 'event'},
responseTemplate: {status: 'ok'},
expectedCode: 200,
expectedResponse: '{ "status": "ok" }',
retries: 3,
partnerId: '78562c79-2f5c-4415-8af4-c871eea92ef2',
type: 'PAYMENT',
headers: {Authorization: ['Bearer abc123'], 'Content-Type': ['application/json']}
})
};
fetch('https://gateway-api.sandbox.paymove.io/api/pay/plugin/webhook', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://gateway-api.sandbox.paymove.io/api/pay/plugin/webhook",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'PaymentSuccessHook',
'endpoint' => 'https://example.com/webhooks/payment-success',
'method' => 'POST',
'requestTemplate' => [
'productId' => 'productId',
'event' => 'event'
],
'responseTemplate' => [
'status' => 'ok'
],
'expectedCode' => 200,
'expectedResponse' => '{ "status": "ok" }',
'retries' => 3,
'partnerId' => '78562c79-2f5c-4415-8af4-c871eea92ef2',
'type' => 'PAYMENT',
'headers' => [
'Authorization' => [
'Bearer abc123'
],
'Content-Type' => [
'application/json'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://gateway-api.sandbox.paymove.io/api/pay/plugin/webhook"
payload := strings.NewReader("{\n \"name\": \"PaymentSuccessHook\",\n \"endpoint\": \"https://example.com/webhooks/payment-success\",\n \"method\": \"POST\",\n \"requestTemplate\": {\n \"productId\": \"productId\",\n \"event\": \"event\"\n },\n \"responseTemplate\": {\n \"status\": \"ok\"\n },\n \"expectedCode\": 200,\n \"expectedResponse\": \"{ \\\"status\\\": \\\"ok\\\" }\",\n \"retries\": 3,\n \"partnerId\": \"78562c79-2f5c-4415-8af4-c871eea92ef2\",\n \"type\": \"PAYMENT\",\n \"headers\": {\n \"Authorization\": [\n \"Bearer abc123\"\n ],\n \"Content-Type\": [\n \"application/json\"\n ]\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://gateway-api.sandbox.paymove.io/api/pay/plugin/webhook")
.header("X-API-KEY", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"PaymentSuccessHook\",\n \"endpoint\": \"https://example.com/webhooks/payment-success\",\n \"method\": \"POST\",\n \"requestTemplate\": {\n \"productId\": \"productId\",\n \"event\": \"event\"\n },\n \"responseTemplate\": {\n \"status\": \"ok\"\n },\n \"expectedCode\": 200,\n \"expectedResponse\": \"{ \\\"status\\\": \\\"ok\\\" }\",\n \"retries\": 3,\n \"partnerId\": \"78562c79-2f5c-4415-8af4-c871eea92ef2\",\n \"type\": \"PAYMENT\",\n \"headers\": {\n \"Authorization\": [\n \"Bearer abc123\"\n ],\n \"Content-Type\": [\n \"application/json\"\n ]\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://gateway-api.sandbox.paymove.io/api/pay/plugin/webhook")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"PaymentSuccessHook\",\n \"endpoint\": \"https://example.com/webhooks/payment-success\",\n \"method\": \"POST\",\n \"requestTemplate\": {\n \"productId\": \"productId\",\n \"event\": \"event\"\n },\n \"responseTemplate\": {\n \"status\": \"ok\"\n },\n \"expectedCode\": 200,\n \"expectedResponse\": \"{ \\\"status\\\": \\\"ok\\\" }\",\n \"retries\": 3,\n \"partnerId\": \"78562c79-2f5c-4415-8af4-c871eea92ef2\",\n \"type\": \"PAYMENT\",\n \"headers\": {\n \"Authorization\": [\n \"Bearer abc123\"\n ],\n \"Content-Type\": [\n \"application/json\"\n ]\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "18e19688-bdda-4843-8777-0f04d0143c77",
"name": "PaymentSuccessHook",
"endpoint": "https://example.com/webhooks/payment-success",
"method": "POST",
"requestTemplate": {
"productId": "productId",
"event": "event"
},
"responseTemplate": {
"status": "ok"
},
"expectedCode": 200,
"expectedResponse": "{ \"status\": \"ok\" }",
"retries": 3,
"type": "PAYMENT",
"headers": {
"Authorization": [
"Bearer abc123"
],
"Content-Type": [
"application/json"
]
},
"signingSecret": "whsec_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}Autoryzacje
Klucz API dostarczony przez Paymove po zakończeniu procesu KYC.
Przykład: sk_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Treść
"PaymentSuccessHook"
URL, na który będą wysyłane powiadomienia
POST Szablon body żądania (zmienne podstawiane przez Paymove)
200
PAYMENT Oczekiwana struktura odpowiedzi od partnera
"{ \"status\": \"ok\" }"
Liczba ponownych prób w przypadku niepowodzenia
3
Show child attributes
Show child attributes
Odpowiedź
Webhook zarejestrowany — odpowiedź zawiera id (webhookId) oraz signingSecret
Obiekt webhooka zwracany przez API
Identyfikator webhooka (webhookId)
Show child attributes
Show child attributes
Sekret do weryfikacji podpisu żądań przychodzących od Paymove — przechowuj bezpiecznie