Jaymer wrote
ACDC wrote
How do I capture the POST url at the server level for debug purposes -- any ideas?
not sure what that means.
A REST call going TO Aware?
I am connecting to a remote API and posting an Invoice from my AwareIM APP
The ....POST url that AwareIM generates from the Aware configured REST Object contains a Request header and body.
I want to see something like this, to check if the layout and contents that AwareIM created is correct according to the configuration in the REST OBJECT and its related process. (i can see it in the table created by the process, but want to see what's going out on the wire)
{
"header": {
"Authorization": "Bearer api-key",
"x-apitest-app-id": "app-id",
"x-apitest-consumer-id": "consumer-id",
"x-apitest-service-id": "service-id"
},
"body": {
"number": "1234567",
"customer": "Citi Bank",
"invoice_date": "2023/04/10",
"due_date": "2023/04/10",
"terms": "Net",
"po_number": "4321",
"reference": "69000",
"status": "authorised",
"tax_inclusive": "2000",
"sub_total": "2500",
"total_tax": "500",
"tax_code": "td200",
"balance": "2500",
"billing_address": {
"id": "450009",
"string": "25 Sring St Blackburn",
"name": "HQ US",
"line1": ""
}
}
}