Atualiza ou cria múltiplos eventos de folha de pagamento
curl --request POST \
--url https://api.example.com/payment-sheet/event/sync \
--header 'Content-Type: application/json' \
--data '
{
"source": "Keevo",
"events": [
{
"code": "250087",
"description": "Keevo NG Folha"
}
]
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({source: 'Keevo', events: [{code: '250087', description: 'Keevo NG Folha'}]})
};
fetch('https://api.example.com/payment-sheet/event/sync', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.example.com/payment-sheet/event/sync"
payload = {
"source": "Keevo",
"events": [
{
"code": "250087",
"description": "Keevo NG Folha"
}
]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/payment-sheet/event/sync"
payload := strings.NewReader("{\n \"source\": \"Keevo\",\n \"events\": [\n {\n \"code\": \"250087\",\n \"description\": \"Keevo NG Folha\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
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))
}<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/payment-sheet/event/sync",
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([
'source' => 'Keevo',
'events' => [
[
'code' => '250087',
'description' => 'Keevo NG Folha'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}require 'uri'
require 'net/http'
url = URI("https://api.example.com/payment-sheet/event/sync")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"source\": \"Keevo\",\n \"events\": [\n {\n \"code\": \"250087\",\n \"description\": \"Keevo NG Folha\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"status": true,
"mensagem": "OK"
}{
"service": "<string>",
"method": "<string>",
"message": "message erro"
}Payment Sheet
Atualiza ou cria múltiplos eventos de folha de pagamento
POST
/
payment-sheet
/
event
/
sync
Atualiza ou cria múltiplos eventos de folha de pagamento
curl --request POST \
--url https://api.example.com/payment-sheet/event/sync \
--header 'Content-Type: application/json' \
--data '
{
"source": "Keevo",
"events": [
{
"code": "250087",
"description": "Keevo NG Folha"
}
]
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({source: 'Keevo', events: [{code: '250087', description: 'Keevo NG Folha'}]})
};
fetch('https://api.example.com/payment-sheet/event/sync', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.example.com/payment-sheet/event/sync"
payload = {
"source": "Keevo",
"events": [
{
"code": "250087",
"description": "Keevo NG Folha"
}
]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/payment-sheet/event/sync"
payload := strings.NewReader("{\n \"source\": \"Keevo\",\n \"events\": [\n {\n \"code\": \"250087\",\n \"description\": \"Keevo NG Folha\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
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))
}<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/payment-sheet/event/sync",
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([
'source' => 'Keevo',
'events' => [
[
'code' => '250087',
'description' => 'Keevo NG Folha'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}require 'uri'
require 'net/http'
url = URI("https://api.example.com/payment-sheet/event/sync")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"source\": \"Keevo\",\n \"events\": [\n {\n \"code\": \"250087\",\n \"description\": \"Keevo NG Folha\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"status": true,
"mensagem": "OK"
}{
"service": "<string>",
"method": "<string>",
"message": "message erro"
}Body
application/json
Dados dos eventos
Fonte do evento de folha de pagamento
Available options:
Keevo, OneFlow, Sankhya, Tron, Outro Eventos de folha de pagamento
Show child attributes
Show child attributes
Nome da fonte do evento de folha de pagamento, para o caso de uma fonte desconhecida (Outro)
Example:
"Folha TMNT Dev Team"
ID da unidade de negócio, para o caso de uma fonte OneFlow
Example:
"123-456abc"