Ricky Moorhouse

Blog

Invoke IBM Cloud Functions from API Connect

Cloud functions offer an easy way to build functionality and only pay for the time they are actually running without having to worry about how it will be hosted - you just right the code, save it and it is ready to be invoked. The function can be invoked through an event trigger or as a REST API - in this case I'm going to show how you can trigger a function as part of your API Connect assembly flow - providing an easy way to manage and socialise the functionality you have built.

To call an IBM Cloud function you first need to exchange your IBM Cloud API Key for an IAM access key using the IAM Authentication API.

This is a case of setting up and sending a post request to IBM Cloud IAM, to do this I used a set-variable policy to configure the headers and body followed by an invoke to https://iam.cloud.ibm.com/identity/token. The set-variable looks like this:

      - set-variable:
          version: 2.0.0
          title: setup iam request
          actions:
            - set: message.headers.content-type
              value: application/x-www-form-urlencoded
              type: string
            - set: message.headers.accept
              value: application/json
              type: string
            - set: message.body
              type: string
              value: >-
                grant_type=urn:ibm:params:oauth:grant-type:apikey&apikey=$(iam-apikey)​                

Once you have this access key you can use this to call your function using the endpoint provided in the UI:

{

For the authentication to the function URL we need to set the Authorization header to Bearer {access_key} where access_key is from the body of the previous request, so to obtain this we can use a Parse policy to parse the returned json, and then another set-variable policy to configure the headers for the Function invoke. This time the set-variable looks like this:

      - set-variable:
          version: 2.0.0
          title: setup function call
          actions:
            - set: message.headers.authorization
              value: Bearer $(iam.body.access_token)
              type: string
            - set: message.body
              value: $(request.body)
              type: any
            - set: message.headers.accept
              value: application/json
              type: string

As you can see we're setting the authorization and accept headers, and passing the original request body from the inbound request. We follow this with an invoke of the function URL and a map, because the JSON returned from the function API includes details on invocation as well as the defined response:

{

The end to end flow looks like this:

{

Here is the complete sample swagger file which can be used in any API Connect deployment, including our new API Connect service on AWS

20 years of fun and adventure

2002 - Wedding
2002 - Wedding
2003 - Malta
2003 - Malta
2004 - Iguazu
2004 - Iguazu
2005 - Greece
2005 - Greece
2006 - Abi
2006 - Abi
2007 - Cornwall
2007 - Cornwall
2008 - Malta
2008 - Malta
2009 - Jessica
2009 - Jessica
2010 - Portsmouth
2010 - Portsmouth
2011 - Torquay
2011 - Torquay
2012 - Olympics
2012 - Olympics
2013 - New Year's Eve
2013 - New Year's Eve
2014 - London
2014 - London
2015 - Majorca
2015 - Majorca
2016 - Valencia
2016 - Valencia
2017 - Nice
2017 - Nice
2018 - Lake Garda
2018 - Lake Garda
2019 - Switzerland
2019 - Switzerland
2020 - Gosport
2020 - Gosport
2021 - New Forest
2021 - New Forest
2022 - Costa Rica
2022 - Costa Rica