Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Creating payload for JSON data using SIL

frithjof falck
Contributor
May 24, 2023

Hello,

I'm trying to create a payload for a POST request using SIL.

JSON data:

{
  "fields": {
    "test":"Hallo",
    "test2": "Hallo",
  }
}
I have tried using postman to create the payload:
string payload = "{ \"test\":\"Hallo\", \"test2\": \"Hallo\", }";
Still getting an 415 error. Anybody have any suggestions on how this should be formatted correctly?

1 answer

1 accepted

0 votes
Answer accepted
Graham Twine
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 26, 2023

Hello @frithjof falck ,

 

A 415 error is the incorrect media type.

DO  you have the correct headers set in Postman?

Content-Type application/json

 

HttpHeader acceptsHeader = httpCreateHeader("Accept", "application/json");
HttpHeader contentTypeHeader = httpCreateHeader("Content-Type", "application/json");

request.headers += acceptsHeader;
request.headers += contentTypeHeader;
frithjof falck
Contributor
May 27, 2023

Got this working. It wasn't my json data, but the api only accepting a certain media type. Thanks for replying anyways

Graham Twine
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 27, 2023

How did you setup the media type to get this working?

 

It is always useful for others who come across this.

You can also accept your own answer so the question is 'resolved'

frithjof falck
Contributor
August 10, 2023 edited

Hello. The workaround was to run a curl script as a system routine in SIL. The problem was that that it was not possible to send a post request with content type multipart/form data using SIL.

Like • Nikolai Nekrasov likes this

Suggest an answer

Log in or Sign up to answer
TAGS
atlassian, knowledge sharing, intentional knowledge sharing playbook, loom, confluence, team collaboration, knowledge management, workplace productivity, information silos, documentation best practices, internal communication, knowledge sharing strategies

Conquer collaboration chaos with Loom + Confluence

You don't need more tools. You need tools that actually work together – the way humans do. See how Loom + Confluence help teams collaborate with more context, more connection, and fewer calendar invites. 💪

See inside
AUG Leaders

Atlassian Community Events