Happy Holidays! I am trying to retrieve data from an API that is supplied with a url and authKey (see image)
It is a GET request that supposed to return a JSON array like this:
But, I have not figured out which API tool to use, or how to pass the information to generate a response. I have examples of how to use it with PHP and Python but would like to use the Wappler tools.
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": [
{
"type": "object",
"properties": {
"SchoolName": {
"type": "string"
},
"Address1": {
"type": "string"
},
"Address2": {
"type": "string"
},
"City": {
"type": "string"
},
"State": {
"type": "string"
},
"PostalCode": {
"type": "string"
},
"Country": {
"type": "string"
},
"Logo": {
"type": "string"
},
"WebsiteUrl": {
"type": "string"
},
"PhoneNumber": {
"type": "string"
},
"DateJoinedIOGKF": {
"type": "string"
},
"DateLeftIOGKF": {
"type": "null"
},
"IOGKFMembershipValidThrough": {
"type": "string"
},
"IogkfMembershipClass": {
"type": "string"
},
"Instructor": {
"type": "null"
},
"IogkfRegion": {
"type": "string"
},
"EmailAddress": {
"type": "string"
}
}
}
]
}
Community Page
Last updated:
Last updated: