Skip to content

Instantly share code, notes, and snippets.

@russellbodine
Last active July 17, 2017 13:14
Show Gist options
  • Select an option

  • Save russellbodine/8c2b2522cbaf96a4458f7ea8f8ace034 to your computer and use it in GitHub Desktop.

Select an option

Save russellbodine/8c2b2522cbaf96a4458f7ea8f8ace034 to your computer and use it in GitHub Desktop.

Retrieve Award IDs for the autocomplete text box

Route: /api/v2/autocomplete/CFDA/

Method: POST

This route sends a request to the backend to retrieve CFDA matching the specified search text.

Request example

{
	"search_text": "DEAC0494AL85000",
	"limit": 10
}

Request Parameters Description

  • search_text - required - a string that contains the search term(s) on which to search for the award IDs
  • limit - optional - an integer representing the number of desired entries per budget title type. It can be an integer or a string representation of an integer. Defaults to 10.

Response (JSON)

{
	"results": [
		{
			"code": "",
			"decription": ""
		},
		....
		
	],
	
}

Errors

Possible HTTP Status Codes:

  • 400 : Missing parameters or limit is not a valid, positive integer
  • 500 : All other errors
{
  "message": "Sample error message"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment