Papupata Documentation

Guide: calling APIs

Overview

When you are using someone else's API, this is where the magic happens for you. Making API requests may never have been this simple without a fully featured support library.

Table of contents

Prerequisites

Before starting this guide, you need to have an API declaration, with declared APIs. For information on how to get there, see Declaring APIs. You also need to have configured the API declaration to be able to make requests. This is covered in Setting up papupata

For the examples in the guide, the following code is assumed to be present in the scope, and by this time you should be fully aware of what it all means:

Older styles are still supported in later versions, just not preferred.
const API = new APIDeclaration()
const api = API.declarePatchAPI('/update/:id')
  .params({id: String})
  .body<{name: string}>()
  .response<string>()

The Basics

With properly set up papupata the some complexities of dealing with REST APIs are hidden well under the hood. You have a function, with typed arguments helping you avoid mistakes.

Now, if you looked at the API we will be using, you probably noticed that thare are two parameters to the API. A path parameter, id, and a body that is an object with name in it.

Now let's call the API:

await api({ id: 'alpha', name: 'Kevin'})

That's all there is to it. You never had to know the actual URL. As you can see, all parameters go into the same object regardless of where they are meant to end up. Body, query and path parameters, all in one. This does mean that you cannot have different parameters with the same name in different places, but in most cases that sounds like a bad idea to begin with.

Things work as you would expect: optional parameters are optional, boolean parameters accept booleans and so on. With a properly declared API you can even pass in dates even though they'll probably becomes strings as they are converted to JSON. It is fully typed as well, so typescript will complain if you try to do something that contradicts the declaration.

You can of course receive responses from the API. You probably guessed it already, but the promise returned by the call resolves to that value. The response too, of course, is fully typed.

const response = await api({ id: 'alpha', name: 'Kevin'})
// the response from the api is now in response. Typescript knows it's a string, as that's
// how it was declared to be.

Non-object bodies

All in one object sounds like a good idea until it is not. What if you are not passing an object? Even things as mundane as arrays and strings won't work in that case.

This is something papupata is prepared for. Instead of passing everything as a single parameter, you can pass the body as the first parameter with path and query parameters in another.

await api({name: 'Kevin'}, {id: 'alpha'})

Sometimes you might want to do this for the sake of clarity as well.

Options

It is possible to pass options to the code that actually performs the HTTP request for papupata. They are given as an additional final parameter to the API call, whether or not you gave the body as a separate parameter.

The build in adapters do not support options, see custom request adapters for more information on how to utilize the options.

await api({name: 'Kevin'}, {id: 'alpha'}, {options: 123})
await api({name: 'Kevin', id: 'alpha'}, {options: 123})

Bypassing papupata

Sometimes an API can be difficult to call using papupata. A common example would be piping a stream to a request, this is not something papupata can handle at this time. Sometimes you just want to call an API an unconventional fashion, bypassing all of papupata's logic.

Even in these case you can still take advantage of the API declarations set up for papupata. You can use the getURL method on an API to get the URL for an API, with its path and possibly query parameters set up.

If you want to create an object that matches the declared body, you can get the type of RequestBody for the API, and similarly use ResponseType for the response.

const body: typeof api.BodyType = { name: 'Kevin' }
const url = api.getURL({id: 'alpha'})
const response: typeof api.ResponseType = await myInvoke(url, body)

Conclusion

Now you know how to call APIs. You might want to know more about how to write tests for client code that utilizes papupata. For that, see testing.

If you want to switch to the server side now,setting up papupata server and implementing APIs are both fine options.