NetTalk Central

The Rest Of NetTalk => The Rest - Ask For Help => Topic started by: JohanR on December 29, 2024, 03:25:36 AM

Title: Rest API - bad request reply
Post by: JohanR on December 29, 2024, 03:25:36 AM
Hi,

In doing a Post to Postmark email API I get the following response.
My JSON data seems to check out OK using a validator.

Is there a way I can save the header of my post?

I know using ThisPage gives me the returned page , header and all, but is there a similar function for the POST?

thanks
Johan



HTTP/1.1 400 Bad Request
Date: Sat, 28 Dec 2024 16:20:00 GMT
Content-Type: application/json; charset=utf-8
Content-Length: 80
Connection: keep-alive
vary: Origin
Strict-Transport-Security: max-age=16000000;

{
  "message":"Bad request",
  "request_id":"fbeaeb7a31e4f17056304f6400604e28"
}
Title: Re: Rest API - bad request reply
Post by: Jane on December 29, 2024, 11:33:36 AM
Johan,

As a first suggestion, try compiling with
Code: [Select]
NetShowSend=>1and then using debugview++

Another tool I've found useful is to run Fiddler and use it to monitor traffic in and out.  If you have an app (Postman, maybe?) that works and one that doesn't, that can be useful to compare what the two different apps are sending.
Title: Re: Rest API - bad request reply
Post by: JohanR on December 29, 2024, 01:07:28 PM
Hi Jane

Thanks!!
NetShowSend=>1 did the trick

Could see immediately that I made hash of the lookups in my config file for my header settings, custom header etc...


cheers,

Johan