Questions tagged [json-api-response-converter]

21 questions
0
votes
1 answer

How to handle different JSON Responses from same source in flutter

I have a flutter application retrieving a list/or anything for that matter at some point, and if there's any issue with the request, a different response is received. For Example: { "status" : "success", "message": [ { …
vat69
  • 123
  • 1
  • 10
0
votes
3 answers

how to validate Json Response value in Rest Assured

Hi i am getting Json Response Body from a get request in REST request. { "outputData": { "data": { "leaveList": [ { "leaveTypeID": 1, "leaveBalance": 2 }, { "leaveTypeID": 2, …
0
votes
3 answers

Transform object to multiply array

Here is object that i get from api { status: true, code: 200, msg: "Successfully", response: { 1609927200: { o: "1.2338", h: "1.2344", l: "1.2333", c:…
Vecot
  • 21
  • 1
  • 5
0
votes
1 answer

Syntax error when calling "from" attribute of a JSON object

I am using RingCentral API to get call log information. I am interested in an attribute called from which tells us who was the caller who made the call. To access the caller name, I need to access a call record -> then go to the last leg (root of…
0
votes
0 answers

Nested JSON to data frame in r - non rectangular

I have a large quantity of JSON files from and API that are in the same format that I need to either combine and/or convert to a data frame in R. I have tried many different methods for doing this, however since the JSON file is nested it isn't…
0
votes
3 answers

Convert UTC time recieved from weather api to local time

I am calling current weather API response from https://openweathermap.org/current The API response has sunset and sunrise value like this : "sunrise": 1560343627, "sunset": 1560396563 The parameter unit is written as Sunset time, Unix, UTC I know…
Sneha
  • 94
  • 10
1
2