cURL
curl --request PATCH \
--url https://sandbox.dollarpe.xyz/pis/api/v1/payin/update-transfer-id \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--header 'X-SIGNATURE: <api-key>' \
--header 'X-TIMESTAMP: <api-key>' \
--data '
{
"payin_id": "9e67356c-cf5e-4fa2-958f-411e7607a307",
"exchange_transfer_id": "987283747899283945"
}
'import requests
url = "https://sandbox.dollarpe.xyz/pis/api/v1/payin/update-transfer-id"
payload = {
"payin_id": "9e67356c-cf5e-4fa2-958f-411e7607a307",
"exchange_transfer_id": "987283747899283945"
}
headers = {
"X-API-KEY": "<api-key>",
"X-TIMESTAMP": "<api-key>",
"X-SIGNATURE": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {
'X-API-KEY': '<api-key>',
'X-TIMESTAMP': '<api-key>',
'X-SIGNATURE': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
payin_id: '9e67356c-cf5e-4fa2-958f-411e7607a307',
exchange_transfer_id: '987283747899283945'
})
};
fetch('https://sandbox.dollarpe.xyz/pis/api/v1/payin/update-transfer-id', 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://sandbox.dollarpe.xyz/pis/api/v1/payin/update-transfer-id",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'payin_id' => '9e67356c-cf5e-4fa2-958f-411e7607a307',
'exchange_transfer_id' => '987283747899283945'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <api-key>",
"X-SIGNATURE: <api-key>",
"X-TIMESTAMP: <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://sandbox.dollarpe.xyz/pis/api/v1/payin/update-transfer-id"
payload := strings.NewReader("{\n \"payin_id\": \"9e67356c-cf5e-4fa2-958f-411e7607a307\",\n \"exchange_transfer_id\": \"987283747899283945\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("X-TIMESTAMP", "<api-key>")
req.Header.Add("X-SIGNATURE", "<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.patch("https://sandbox.dollarpe.xyz/pis/api/v1/payin/update-transfer-id")
.header("X-API-KEY", "<api-key>")
.header("X-TIMESTAMP", "<api-key>")
.header("X-SIGNATURE", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"payin_id\": \"9e67356c-cf5e-4fa2-958f-411e7607a307\",\n \"exchange_transfer_id\": \"987283747899283945\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.dollarpe.xyz/pis/api/v1/payin/update-transfer-id")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-API-KEY"] = '<api-key>'
request["X-TIMESTAMP"] = '<api-key>'
request["X-SIGNATURE"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"payin_id\": \"9e67356c-cf5e-4fa2-958f-411e7607a307\",\n \"exchange_transfer_id\": \"987283747899283945\"\n}"
response = http.request(request)
puts response.read_body{
"status": true,
"message": "Success",
"data": {
"payin_id": "9e67356c-cf5e-4fa2-958f-411e7607a307",
"exchange_transfer_id": "987283747899283945"
}
}{
"success": false,
"message": "Internal Server Error",
"err_code": "SYS_INTERNAL_ERROR",
"errors": "Unexpected error occurred. Please try again later.",
"data": null
}Order
Update transfer ID
Attaches a bank transfer reference ID to an existing payin order for reconciliation.
PATCH
/
payin
/
update-transfer-id
cURL
curl --request PATCH \
--url https://sandbox.dollarpe.xyz/pis/api/v1/payin/update-transfer-id \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--header 'X-SIGNATURE: <api-key>' \
--header 'X-TIMESTAMP: <api-key>' \
--data '
{
"payin_id": "9e67356c-cf5e-4fa2-958f-411e7607a307",
"exchange_transfer_id": "987283747899283945"
}
'import requests
url = "https://sandbox.dollarpe.xyz/pis/api/v1/payin/update-transfer-id"
payload = {
"payin_id": "9e67356c-cf5e-4fa2-958f-411e7607a307",
"exchange_transfer_id": "987283747899283945"
}
headers = {
"X-API-KEY": "<api-key>",
"X-TIMESTAMP": "<api-key>",
"X-SIGNATURE": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {
'X-API-KEY': '<api-key>',
'X-TIMESTAMP': '<api-key>',
'X-SIGNATURE': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
payin_id: '9e67356c-cf5e-4fa2-958f-411e7607a307',
exchange_transfer_id: '987283747899283945'
})
};
fetch('https://sandbox.dollarpe.xyz/pis/api/v1/payin/update-transfer-id', 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://sandbox.dollarpe.xyz/pis/api/v1/payin/update-transfer-id",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'payin_id' => '9e67356c-cf5e-4fa2-958f-411e7607a307',
'exchange_transfer_id' => '987283747899283945'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <api-key>",
"X-SIGNATURE: <api-key>",
"X-TIMESTAMP: <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://sandbox.dollarpe.xyz/pis/api/v1/payin/update-transfer-id"
payload := strings.NewReader("{\n \"payin_id\": \"9e67356c-cf5e-4fa2-958f-411e7607a307\",\n \"exchange_transfer_id\": \"987283747899283945\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("X-TIMESTAMP", "<api-key>")
req.Header.Add("X-SIGNATURE", "<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.patch("https://sandbox.dollarpe.xyz/pis/api/v1/payin/update-transfer-id")
.header("X-API-KEY", "<api-key>")
.header("X-TIMESTAMP", "<api-key>")
.header("X-SIGNATURE", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"payin_id\": \"9e67356c-cf5e-4fa2-958f-411e7607a307\",\n \"exchange_transfer_id\": \"987283747899283945\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.dollarpe.xyz/pis/api/v1/payin/update-transfer-id")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-API-KEY"] = '<api-key>'
request["X-TIMESTAMP"] = '<api-key>'
request["X-SIGNATURE"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"payin_id\": \"9e67356c-cf5e-4fa2-958f-411e7607a307\",\n \"exchange_transfer_id\": \"987283747899283945\"\n}"
response = http.request(request)
puts response.read_body{
"status": true,
"message": "Success",
"data": {
"payin_id": "9e67356c-cf5e-4fa2-958f-411e7607a307",
"exchange_transfer_id": "987283747899283945"
}
}{
"success": false,
"message": "Internal Server Error",
"err_code": "SYS_INTERNAL_ERROR",
"errors": "Unexpected error occurred. Please try again later.",
"data": null
}Update transfer ID
Authorizations
API Key for authentication
Current timestamp in seconds since epoch
HMAC SHA256 signature of the request encoded in Base64
Body
application/json
⌘I

