Submit a one-or-two proposal set to the payroll rail
curl --request POST \
--url https://consignado.sandbox.lerian.net/v1/consignado/leilao/solicitacoes/{id_solicitacao}/propostas \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Idempotency: <x-idempotency>' \
--data '
{
"matricula": "EMP-7K9M2P",
"propostas": [
{
"dataHoraValidadeProposta": "2030-01-01T10:00:00Z",
"numeroParcelas": 12,
"temGarantias": true,
"valorCETAnual": "11.00",
"valorCETMensal": "0.90",
"valorEmprestimo": "2160.00",
"valorIOF": "10.00",
"valorLiberado": "2000.00",
"valorParcela": "180.00",
"valorTaxaAnual": "10.00",
"valorTaxaMensal": "0.80",
"contatos": [
{
"contato": "bidder@example.com",
"tipo": 3
}
],
"percVerbaRescisoriaGarantia": "15.00",
"valorMultaRescisoriaGarantiaFgts": "300.00",
"valorSaldoDisponivelGarantiaFgts": "600.00"
}
]
}
'import requests
url = "https://consignado.sandbox.lerian.net/v1/consignado/leilao/solicitacoes/{id_solicitacao}/propostas"
payload = {
"matricula": "EMP-7K9M2P",
"propostas": [
{
"dataHoraValidadeProposta": "2030-01-01T10:00:00Z",
"numeroParcelas": 12,
"temGarantias": True,
"valorCETAnual": "11.00",
"valorCETMensal": "0.90",
"valorEmprestimo": "2160.00",
"valorIOF": "10.00",
"valorLiberado": "2000.00",
"valorParcela": "180.00",
"valorTaxaAnual": "10.00",
"valorTaxaMensal": "0.80",
"contatos": [
{
"contato": "bidder@example.com",
"tipo": 3
}
],
"percVerbaRescisoriaGarantia": "15.00",
"valorMultaRescisoriaGarantiaFgts": "300.00",
"valorSaldoDisponivelGarantiaFgts": "600.00"
}
]
}
headers = {
"X-Idempotency": "<x-idempotency>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Idempotency': '<x-idempotency>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
matricula: 'EMP-7K9M2P',
propostas: [
{
dataHoraValidadeProposta: '2030-01-01T10:00:00Z',
numeroParcelas: 12,
temGarantias: true,
valorCETAnual: '11.00',
valorCETMensal: '0.90',
valorEmprestimo: '2160.00',
valorIOF: '10.00',
valorLiberado: '2000.00',
valorParcela: '180.00',
valorTaxaAnual: '10.00',
valorTaxaMensal: '0.80',
contatos: [{contato: 'bidder@example.com', tipo: 3}],
percVerbaRescisoriaGarantia: '15.00',
valorMultaRescisoriaGarantiaFgts: '300.00',
valorSaldoDisponivelGarantiaFgts: '600.00'
}
]
})
};
fetch('https://consignado.sandbox.lerian.net/v1/consignado/leilao/solicitacoes/{id_solicitacao}/propostas', 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://consignado.sandbox.lerian.net/v1/consignado/leilao/solicitacoes/{id_solicitacao}/propostas",
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([
'matricula' => 'EMP-7K9M2P',
'propostas' => [
[
'dataHoraValidadeProposta' => '2030-01-01T10:00:00Z',
'numeroParcelas' => 12,
'temGarantias' => true,
'valorCETAnual' => '11.00',
'valorCETMensal' => '0.90',
'valorEmprestimo' => '2160.00',
'valorIOF' => '10.00',
'valorLiberado' => '2000.00',
'valorParcela' => '180.00',
'valorTaxaAnual' => '10.00',
'valorTaxaMensal' => '0.80',
'contatos' => [
[
'contato' => 'bidder@example.com',
'tipo' => 3
]
],
'percVerbaRescisoriaGarantia' => '15.00',
'valorMultaRescisoriaGarantiaFgts' => '300.00',
'valorSaldoDisponivelGarantiaFgts' => '600.00'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"X-Idempotency: <x-idempotency>"
],
]);
$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://consignado.sandbox.lerian.net/v1/consignado/leilao/solicitacoes/{id_solicitacao}/propostas"
payload := strings.NewReader("{\n \"matricula\": \"EMP-7K9M2P\",\n \"propostas\": [\n {\n \"dataHoraValidadeProposta\": \"2030-01-01T10:00:00Z\",\n \"numeroParcelas\": 12,\n \"temGarantias\": true,\n \"valorCETAnual\": \"11.00\",\n \"valorCETMensal\": \"0.90\",\n \"valorEmprestimo\": \"2160.00\",\n \"valorIOF\": \"10.00\",\n \"valorLiberado\": \"2000.00\",\n \"valorParcela\": \"180.00\",\n \"valorTaxaAnual\": \"10.00\",\n \"valorTaxaMensal\": \"0.80\",\n \"contatos\": [\n {\n \"contato\": \"bidder@example.com\",\n \"tipo\": 3\n }\n ],\n \"percVerbaRescisoriaGarantia\": \"15.00\",\n \"valorMultaRescisoriaGarantiaFgts\": \"300.00\",\n \"valorSaldoDisponivelGarantiaFgts\": \"600.00\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Idempotency", "<x-idempotency>")
req.Header.Add("Authorization", "Bearer <token>")
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://consignado.sandbox.lerian.net/v1/consignado/leilao/solicitacoes/{id_solicitacao}/propostas")
.header("X-Idempotency", "<x-idempotency>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"matricula\": \"EMP-7K9M2P\",\n \"propostas\": [\n {\n \"dataHoraValidadeProposta\": \"2030-01-01T10:00:00Z\",\n \"numeroParcelas\": 12,\n \"temGarantias\": true,\n \"valorCETAnual\": \"11.00\",\n \"valorCETMensal\": \"0.90\",\n \"valorEmprestimo\": \"2160.00\",\n \"valorIOF\": \"10.00\",\n \"valorLiberado\": \"2000.00\",\n \"valorParcela\": \"180.00\",\n \"valorTaxaAnual\": \"10.00\",\n \"valorTaxaMensal\": \"0.80\",\n \"contatos\": [\n {\n \"contato\": \"bidder@example.com\",\n \"tipo\": 3\n }\n ],\n \"percVerbaRescisoriaGarantia\": \"15.00\",\n \"valorMultaRescisoriaGarantiaFgts\": \"300.00\",\n \"valorSaldoDisponivelGarantiaFgts\": \"600.00\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://consignado.sandbox.lerian.net/v1/consignado/leilao/solicitacoes/{id_solicitacao}/propostas")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Idempotency"] = '<x-idempotency>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"matricula\": \"EMP-7K9M2P\",\n \"propostas\": [\n {\n \"dataHoraValidadeProposta\": \"2030-01-01T10:00:00Z\",\n \"numeroParcelas\": 12,\n \"temGarantias\": true,\n \"valorCETAnual\": \"11.00\",\n \"valorCETMensal\": \"0.90\",\n \"valorEmprestimo\": \"2160.00\",\n \"valorIOF\": \"10.00\",\n \"valorLiberado\": \"2000.00\",\n \"valorParcela\": \"180.00\",\n \"valorTaxaAnual\": \"10.00\",\n \"valorTaxaMensal\": \"0.80\",\n \"contatos\": [\n {\n \"contato\": \"bidder@example.com\",\n \"tipo\": 3\n }\n ],\n \"percVerbaRescisoriaGarantia\": \"15.00\",\n \"valorMultaRescisoriaGarantiaFgts\": \"300.00\",\n \"valorSaldoDisponivelGarantiaFgts\": \"600.00\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"idSolicitacao": "18406",
"propostas": [
{
"accepted": true,
"codigo": "BD",
"dataHoraValidadeProposta": "2030-01-01T10:00:00Z",
"numeroProposta": "7K9M2P4R6T8V3W5X2Y4Z"
}
],
"submittedAt": "2026-07-31T12:00:00Z"
}{
"code": "ERR-0001",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}{
"refusal": {
"detail": "matricula must match the discovered solicitacao",
"field": "matricula",
"rule": "MATRICULA_MATCH",
"source": "local"
},
"code": "ERR-0001",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}{
"code": "ERR-0001",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}{
"code": "ERR-0001",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}Submit a one-or-two proposal set to the payroll rail
Submits the complete one-or-two proposal set through inclusao-garantias (Manual 001 v1.9 §3.1) synchronously. X-Idempotency is mandatory and durable.
| Case | Result | Rail call |
|---|---|---|
| Same key + same body, known outcome | 200 replay of the stored response | No |
| Same key + different body | 422 unprocessable entity | No |
| New key + same solicitação | 409 conflict | No |
| Unknown-outcome retry | Retry the unresolved submission with the same proposal IDs | May call the rail with the same proposal IDs |
POST
/
v1
/
consignado
/
leilao
/
solicitacoes
/
{id_solicitacao}
/
propostas
Submit a one-or-two proposal set to the payroll rail
curl --request POST \
--url https://consignado.sandbox.lerian.net/v1/consignado/leilao/solicitacoes/{id_solicitacao}/propostas \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Idempotency: <x-idempotency>' \
--data '
{
"matricula": "EMP-7K9M2P",
"propostas": [
{
"dataHoraValidadeProposta": "2030-01-01T10:00:00Z",
"numeroParcelas": 12,
"temGarantias": true,
"valorCETAnual": "11.00",
"valorCETMensal": "0.90",
"valorEmprestimo": "2160.00",
"valorIOF": "10.00",
"valorLiberado": "2000.00",
"valorParcela": "180.00",
"valorTaxaAnual": "10.00",
"valorTaxaMensal": "0.80",
"contatos": [
{
"contato": "bidder@example.com",
"tipo": 3
}
],
"percVerbaRescisoriaGarantia": "15.00",
"valorMultaRescisoriaGarantiaFgts": "300.00",
"valorSaldoDisponivelGarantiaFgts": "600.00"
}
]
}
'import requests
url = "https://consignado.sandbox.lerian.net/v1/consignado/leilao/solicitacoes/{id_solicitacao}/propostas"
payload = {
"matricula": "EMP-7K9M2P",
"propostas": [
{
"dataHoraValidadeProposta": "2030-01-01T10:00:00Z",
"numeroParcelas": 12,
"temGarantias": True,
"valorCETAnual": "11.00",
"valorCETMensal": "0.90",
"valorEmprestimo": "2160.00",
"valorIOF": "10.00",
"valorLiberado": "2000.00",
"valorParcela": "180.00",
"valorTaxaAnual": "10.00",
"valorTaxaMensal": "0.80",
"contatos": [
{
"contato": "bidder@example.com",
"tipo": 3
}
],
"percVerbaRescisoriaGarantia": "15.00",
"valorMultaRescisoriaGarantiaFgts": "300.00",
"valorSaldoDisponivelGarantiaFgts": "600.00"
}
]
}
headers = {
"X-Idempotency": "<x-idempotency>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Idempotency': '<x-idempotency>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
matricula: 'EMP-7K9M2P',
propostas: [
{
dataHoraValidadeProposta: '2030-01-01T10:00:00Z',
numeroParcelas: 12,
temGarantias: true,
valorCETAnual: '11.00',
valorCETMensal: '0.90',
valorEmprestimo: '2160.00',
valorIOF: '10.00',
valorLiberado: '2000.00',
valorParcela: '180.00',
valorTaxaAnual: '10.00',
valorTaxaMensal: '0.80',
contatos: [{contato: 'bidder@example.com', tipo: 3}],
percVerbaRescisoriaGarantia: '15.00',
valorMultaRescisoriaGarantiaFgts: '300.00',
valorSaldoDisponivelGarantiaFgts: '600.00'
}
]
})
};
fetch('https://consignado.sandbox.lerian.net/v1/consignado/leilao/solicitacoes/{id_solicitacao}/propostas', 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://consignado.sandbox.lerian.net/v1/consignado/leilao/solicitacoes/{id_solicitacao}/propostas",
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([
'matricula' => 'EMP-7K9M2P',
'propostas' => [
[
'dataHoraValidadeProposta' => '2030-01-01T10:00:00Z',
'numeroParcelas' => 12,
'temGarantias' => true,
'valorCETAnual' => '11.00',
'valorCETMensal' => '0.90',
'valorEmprestimo' => '2160.00',
'valorIOF' => '10.00',
'valorLiberado' => '2000.00',
'valorParcela' => '180.00',
'valorTaxaAnual' => '10.00',
'valorTaxaMensal' => '0.80',
'contatos' => [
[
'contato' => 'bidder@example.com',
'tipo' => 3
]
],
'percVerbaRescisoriaGarantia' => '15.00',
'valorMultaRescisoriaGarantiaFgts' => '300.00',
'valorSaldoDisponivelGarantiaFgts' => '600.00'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"X-Idempotency: <x-idempotency>"
],
]);
$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://consignado.sandbox.lerian.net/v1/consignado/leilao/solicitacoes/{id_solicitacao}/propostas"
payload := strings.NewReader("{\n \"matricula\": \"EMP-7K9M2P\",\n \"propostas\": [\n {\n \"dataHoraValidadeProposta\": \"2030-01-01T10:00:00Z\",\n \"numeroParcelas\": 12,\n \"temGarantias\": true,\n \"valorCETAnual\": \"11.00\",\n \"valorCETMensal\": \"0.90\",\n \"valorEmprestimo\": \"2160.00\",\n \"valorIOF\": \"10.00\",\n \"valorLiberado\": \"2000.00\",\n \"valorParcela\": \"180.00\",\n \"valorTaxaAnual\": \"10.00\",\n \"valorTaxaMensal\": \"0.80\",\n \"contatos\": [\n {\n \"contato\": \"bidder@example.com\",\n \"tipo\": 3\n }\n ],\n \"percVerbaRescisoriaGarantia\": \"15.00\",\n \"valorMultaRescisoriaGarantiaFgts\": \"300.00\",\n \"valorSaldoDisponivelGarantiaFgts\": \"600.00\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Idempotency", "<x-idempotency>")
req.Header.Add("Authorization", "Bearer <token>")
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://consignado.sandbox.lerian.net/v1/consignado/leilao/solicitacoes/{id_solicitacao}/propostas")
.header("X-Idempotency", "<x-idempotency>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"matricula\": \"EMP-7K9M2P\",\n \"propostas\": [\n {\n \"dataHoraValidadeProposta\": \"2030-01-01T10:00:00Z\",\n \"numeroParcelas\": 12,\n \"temGarantias\": true,\n \"valorCETAnual\": \"11.00\",\n \"valorCETMensal\": \"0.90\",\n \"valorEmprestimo\": \"2160.00\",\n \"valorIOF\": \"10.00\",\n \"valorLiberado\": \"2000.00\",\n \"valorParcela\": \"180.00\",\n \"valorTaxaAnual\": \"10.00\",\n \"valorTaxaMensal\": \"0.80\",\n \"contatos\": [\n {\n \"contato\": \"bidder@example.com\",\n \"tipo\": 3\n }\n ],\n \"percVerbaRescisoriaGarantia\": \"15.00\",\n \"valorMultaRescisoriaGarantiaFgts\": \"300.00\",\n \"valorSaldoDisponivelGarantiaFgts\": \"600.00\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://consignado.sandbox.lerian.net/v1/consignado/leilao/solicitacoes/{id_solicitacao}/propostas")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Idempotency"] = '<x-idempotency>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"matricula\": \"EMP-7K9M2P\",\n \"propostas\": [\n {\n \"dataHoraValidadeProposta\": \"2030-01-01T10:00:00Z\",\n \"numeroParcelas\": 12,\n \"temGarantias\": true,\n \"valorCETAnual\": \"11.00\",\n \"valorCETMensal\": \"0.90\",\n \"valorEmprestimo\": \"2160.00\",\n \"valorIOF\": \"10.00\",\n \"valorLiberado\": \"2000.00\",\n \"valorParcela\": \"180.00\",\n \"valorTaxaAnual\": \"10.00\",\n \"valorTaxaMensal\": \"0.80\",\n \"contatos\": [\n {\n \"contato\": \"bidder@example.com\",\n \"tipo\": 3\n }\n ],\n \"percVerbaRescisoriaGarantia\": \"15.00\",\n \"valorMultaRescisoriaGarantiaFgts\": \"300.00\",\n \"valorSaldoDisponivelGarantiaFgts\": \"600.00\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"idSolicitacao": "18406",
"propostas": [
{
"accepted": true,
"codigo": "BD",
"dataHoraValidadeProposta": "2030-01-01T10:00:00Z",
"numeroProposta": "7K9M2P4R6T8V3W5X2Y4Z"
}
],
"submittedAt": "2026-07-31T12:00:00Z"
}{
"code": "ERR-0001",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}{
"refusal": {
"detail": "matricula must match the discovered solicitacao",
"field": "matricula",
"rule": "MATRICULA_MATCH",
"source": "local"
},
"code": "ERR-0001",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}{
"code": "ERR-0001",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}{
"code": "ERR-0001",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example",
"upstream": {
"code": "E4001",
"message": "account not found at provider"
}
}Authorizations
JWT bearer token issued by the identity provider.
Headers
Required durable replay key, scoped by authenticated tenant and bounded like the service's other indexed opaque request references.
Required string length:
1 - 128Example:
"idem-bid-2026-07-31-0001"
Path Parameters
Canonical positive int64 Dataprev solicitação identifier, bounded by 9223372036854775807. Leading-zero aliases are normalized before idempotency fingerprinting.
Required string length:
1 - 19Pattern:
^([1-9][0-9]{0,17}|[1-8][0-9]{18}|9[01][0-9]{17}|92[01][0-9]{16}|922[0-2][0-9]{15}|9223[0-2][0-9]{14}|92233[0-6][0-9]{13}|922337[01][0-9]{12}|92233720[0-2][0-9]{10}|922337203[0-5][0-9]{9}|9223372036[0-7][0-9]{8}|92233720368[0-4][0-9]{7}|922337203685[0-3][0-9]{6}|9223372036854[0-6][0-9]{5}|92233720368547[0-6][0-9]{4}|922337203685477[0-4][0-9]{3}|9223372036854775[0-7][0-9]{2}|922337203685477580[0-6]|9223372036854775807)$Example:
"18406"
Body
application/json
Was this page helpful?
⌘I

