Recarga de Créditos para Revendedor
curl --request PATCH \
--url https://api.revenda.nexus/users/credits/{id} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"credits": 123,
"notes": "<string>"
}
'import requests
url = "https://api.revenda.nexus/users/credits/{id}"
payload = {
"credits": 123,
"notes": "<string>"
}
headers = {
"Authorization": "<authorization>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: '<authorization>', 'Content-Type': 'application/json'},
body: JSON.stringify({credits: 123, notes: '<string>'})
};
fetch('https://api.revenda.nexus/users/credits/{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://api.revenda.nexus/users/credits/{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([
'credits' => 123,
'notes' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>",
"Content-Type: application/json"
],
]);
$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://api.revenda.nexus/users/credits/{id}"
payload := strings.NewReader("{\n \"credits\": 123,\n \"notes\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "<authorization>")
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://api.revenda.nexus/users/credits/{id}")
.header("Authorization", "<authorization>")
.header("Content-Type", "application/json")
.body("{\n \"credits\": 123,\n \"notes\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.revenda.nexus/users/credits/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = '<authorization>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"credits\": 123,\n \"notes\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": 136,
"username": "revendedor123",
"credits": 50,
"recharge": "2025-01-16T16:45:00.000Z",
"message": "Créditos adicionados com sucesso."
}
Revendedores
Recarga de Créditos para Revendedor
Este endpoint permite adicionar créditos a um revendedor na plataforma Nexus.
PATCH
/
users
/
credits
/
{id}
Recarga de Créditos para Revendedor
curl --request PATCH \
--url https://api.revenda.nexus/users/credits/{id} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"credits": 123,
"notes": "<string>"
}
'import requests
url = "https://api.revenda.nexus/users/credits/{id}"
payload = {
"credits": 123,
"notes": "<string>"
}
headers = {
"Authorization": "<authorization>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: '<authorization>', 'Content-Type': 'application/json'},
body: JSON.stringify({credits: 123, notes: '<string>'})
};
fetch('https://api.revenda.nexus/users/credits/{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://api.revenda.nexus/users/credits/{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([
'credits' => 123,
'notes' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>",
"Content-Type: application/json"
],
]);
$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://api.revenda.nexus/users/credits/{id}"
payload := strings.NewReader("{\n \"credits\": 123,\n \"notes\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "<authorization>")
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://api.revenda.nexus/users/credits/{id}")
.header("Authorization", "<authorization>")
.header("Content-Type", "application/json")
.body("{\n \"credits\": 123,\n \"notes\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.revenda.nexus/users/credits/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = '<authorization>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"credits\": 123,\n \"notes\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": 136,
"username": "revendedor123",
"credits": 50,
"recharge": "2025-01-16T16:45:00.000Z",
"message": "Créditos adicionados com sucesso."
}
Como utilizar este endpoint?
Esse endpoint permite realizar a recarga de créditos para um revendedor ativo na plataforma.Headers obrigatórios
string
required
O token de autenticação no formato Bearer é obrigatório para acessar este endpoint.
Parâmetros da URL
string
required
ID do revendedor que receberá a recarga. Esse parâmetro deve ser informado diretamente na URL.
Parâmetros do corpo da requisição (Payload)
number
required
Quantidade de créditos a ser adicionada ao revendedor.
string
Observações adicionais sobre a recarga. Campo opcional.
Exemplo de Requisição
PATCH https://api.revenda.nexus/users/credits/136
Headers:
{
"Authorization": "Bearer seu_token_aqui",
"Content-Type": "application/json"
}
Payload:
{
"credits": 10,
"notes": "Recarga mensal de créditos"
}
Resposta
number
Indica o código HTTP da resposta. Esperado: 200 (OK).
object
Exemplo de Resposta
{
"id": 136,
"username": "revendedor123",
"credits": 50,
"recharge": "2025-01-16T16:45:00.000Z",
"message": "Créditos adicionados com sucesso."
}
⌘I

