İade
Yapılan finansal işlemi iade etmek amacıyla kullanılan servistir. İade servisi; yapılan işlemin günsonu ardından tam tutarı veya belirli tutarı karta yansıtmak için çağrılmaktadır. İade işlemi birden çok çağrılabilir, iptal edilmiş bir işlem için iade işlemi gerçekleştirilemez ve toplam iade tutarı işlem tutarının üzerinde olamaz.
POSThttps://testpfapi.rubikpara.com/v1/Payments/return
Request
Headers
ClientIpAddress array[string]
ConversationId string
MerchantNumber string
Nonce string
PublicKey string
Signature string
ConversationId string
MerchantNumber string
Nonce string
PublicKey string
Signature string
Body
application/json
{
"orderId": "string",
"languageCode": "string",
"amount": 20
}
Response
Body
{
"isSucceed": "boolean",
"errorCode": "string or null",
"errorMessage": "string or null",
"conversationId": "string or null",
"returnMessage": "string or null",
"approvalStatus": "string"
}
Örnek Kodlar
- Axios
- Java
- PHP
- C#
- Go
- Python
- cURL
const axios = require('axios').default; const options = { method: 'POST', url: 'https://testpfapi.rubikpara.com/v1/Payments/return', headers: { PublicKey: 'SkDP+k0jpMPDOzjcQ2dTcg==', Nonce: '', Signature: '', ConversationId: 'test123456', ClientIpAddress: '192.1.1.1', MerchantNumber: '1100000001', 'Content-Type': 'application/json', Accept: 'application/json' }, data: {orderId: 'string',// Provizyon Servisinden alınacak languageCode: 'TR', amount: 20} }; try { const { data } = await axios.request(options); console.log(data); } catch (error) { console.error(error); }
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{
"amount": 35,
"orderId": "",// Provizyon Servisinden alınacak
"languageCode":"TR"
}");
Request request = new Request.Builder()
.url("https://testpfapi.rubikpara.com/v1/Payments/return")
.method("POST", body)
.addHeader("publicKey", "SkDP+k0jpMPDOzjcQ2dTcg==")
.addHeader("nonce", "")
.addHeader("signature", "")
.addHeader("conversationId", "test123456")
.addHeader("clientIpAddress", "192.1.1.1")
.addHeader("merchantNumber", "1100000001")
.addHeader("Content-Type", "application/json")
.build();
Response response = client.newCall(request).execute();
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://testpfapi.rubikpara.com/v1/Payments/return",
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([
'orderId' => '',// Provizyon Servisinden alınacak
'languageCode' => 'TR',
'amount' => 20
]),
CURLOPT_HTTPHEADER => [
"Accept: application/json",
"ClientIpAddress: 192.1.1.1",
"Content-Type: application/json",
"ConversationId: test123456",
"MerchantNumber: 1100000001",
"Nonce: ",
"PublicKey: SkDP+k0jpMPDOzjcQ2dTcg==",
"Signature: "
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
Method = HttpMethod.Post,
RequestUri = new Uri("https://testpfapi.rubikpara.com/v1/Payments/return"),
Headers =
{
{ "PublicKey", "SkDP+k0jpMPDOzjcQ2dTcg==" },
{ "Nonce", "" },
{ "Signature", "" },
{ "ConversationId", "test123456" },
{ "ClientIpAddress", "192.1.1.1" },
{ "MerchantNumber", "1100000001" },
{ "Accept", "application/json" },
},
Content = new StringContent("{
"orderId": "",// Provizyon Servisinden alınacak
"languageCode": "TR",
"amount": 20
}")
{
Headers =
{
ContentType = new MediaTypeHeaderValue("application/json")
}
}
};
using (var response = await client.SendAsync(request))
{
response.EnsureSuccessStatusCode();
var body = await response.Content.ReadAsStringAsync();
Console.WriteLine(body);
}
package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://testpfapi.rubikpara.com/v1/Payments/return"
payload := strings.NewReader("{
"orderId": "",// Provizyon Servisinden alınacak
"languageCode": "TR",
"amount": 20
}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("PublicKey", "SkDP+k0jpMPDOzjcQ2dTcg==")
req.Header.Add("Nonce", "")
req.Header.Add("Signature", "")
req.Header.Add("ConversationId", "test123456")
req.Header.Add("ClientIpAddress", "192.1.1.1")
req.Header.Add("MerchantNumber", "1100000001")
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Accept", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
import http.client
conn = http.client.HTTPSConnection("https://testpfapi.rubikpara.com")
payload = "{
"orderId": "",// Provizyon Servisinden alınacak
"languageCode": "TR",
"amount": 20
}"
headers = {
'PublicKey': "SkDP+k0jpMPDOzjcQ2dTcg==",
'Nonce': "",
'Signature': "",
'ConversationId': "test123456",
'ClientIpAddress': "192.1.1.1",
'MerchantNumber': "1100000001",
'Content-Type': "application/json",
'Accept': "application/json"
}
conn.request("POST", "/v1/Payments/return", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
curl --request POST --url https://testpfapi.rubikpara.com/v1/Payments/return --header 'Accept: application/json' --header 'ClientIpAddress: 192.1.1.1' --header 'Content-Type: application/json' --header 'ConversationId: test123456' --header 'MerchantNumber: 1100000001' --header 'Nonce: ' --header 'PublicKey: SkDP+k0jpMPDOzjcQ2dTcg==' --header 'Signature: ' --data '{
"orderId": "",// Provizyon Servisinden alınacak
"languageCode": "TR",
"amount": 20
}'