1. Mario Francisco Celleri
  2. PowerBuilder
  3. Tuesday, 5 September 2023 20:46 PM UTC

Hi guys.

 

I'm very very new in web services, web API's, etc.

We need to connect to AirTable workflow plattform. This have an API, with token; but I'm no idea how to do with Power Builder and how it works.

There is a link with the AirTable API reference.

Have you any idea or simple code app; that I can review?

With clss of controls we need to use to work with?

 

 

Thanks a lot and regards to all.

 

 

Accepted Answer
luis avilan Accepted Answer Pending Moderation
  1. Tuesday, 5 September 2023 22:50 PM UTC
  2. PowerBuilder
  3. # Permalink

hello I leave an example code 


RESTClient lnvo_rest

lnvo_rest = create RESTClient
lnvo_rest.setrequestheader("Authorization" , "Bearer yor token")
ls_url = "https://api.airtable.com/v0/{baseId}/{tableIdOrName}"
lnvo_rest.sendgetrequest( ls_url, ls_resp)

messagebox("respuesta",ls_resp)

greetings

 

Comment
  1. luis avilan
  2. Wednesday, 6 September 2023 15:14 PM UTC
Buenos dias mario

1.- En la referencia de api indica que es Rest

2.-En la documentacion de la api indica los parametros necesarios y parametros de consulta para cada tipo de solicitud.

ejemplo aqui dejo link

https://airtable.com/developers/web/api/list-records

3.- Se deberia usar el objecto RestClient ya que la documentacion de la api asi lo indica

4.- Para sacar informacion del json puedes utilizar los objecto de pb JSONParser y JSONPackage



Saludos



  1. Helpful
  1. Mario Francisco Celleri
  2. Thursday, 7 September 2023 04:25 AM UTC
Gracias nuevamente Luis!!!

Tu ayuda ha sido valiosa; voy a revisar toda la documentación y tratar de entenderla. Todo esto es nuevo para mí; y recién lo estoy aprendiendo y voy a tartar de aplicarlo.

Algún tip o guía que me puedas dar, para lograr entender este tema de Web API.



Gracias nuevamenre.

  1. Helpful
  1. Mario Francisco Celleri
  2. Thursday, 7 September 2023 17:11 PM UTC
Luis,

Cómo se logra determinar que tipo de estructura tiene el JSON que devuelve la API?, cualquiera que esta sea?.



Esto para luego utilizar ya sea JSONParser y/o JSONPackage; o necesariamente se deben usar los dos objetos?



Gracias nuevamente por tu tiempo y ayuda.
  1. Helpful
There are no comments made yet.


There are replies in this question but you are not allowed to view the replies from this question.