Award Management Applications API Parameters

Options
I'm working through the documentation linked from the Import & Export Settings panel, and then choosing Applications API, and I've run into an interesting problem. I'd like to use the API to retrieve incomplete applications for a particular "opportunity_season", but our season's have spaces in the names. For example, I'm looking for the "Fall 2020" season, and I've tried the following combinations:


/api/v1/applications.json?token={{token}}&c[]=opportunity_season__contains__Fall 2020

/api/v1/applications.json?token={{token}}&c[]=opportunity_season__contains__Fall%202020

/api/v1/applications.json?token={{token}}&c[]=opportunity_season__contains__"Fall 2020"

/api/v1/applications.json?token={{token}}&c[]=opportunity_season__contains__'Fall 2020'

/api/v1/applications.json?token={{token}}&c[]=opportunity_season__contains__Fall&c[]=opportunity_season__contains__2020


If I only include "Fall" or "2020", I get results, but I can't find a way to combine them.


Has anyone had success with this?


As a note, the following works as a logical OR (as described in the doc), but this is not what I want.

/api/v1/applications.json?token={{token}}&c[]=opportunity_season__contains__2020__contains__Fall

Comments

Categories