Skip to content

Instantly share code, notes, and snippets.

@nmonga91
Last active July 13, 2017 19:22
Show Gist options
  • Save nmonga91/7bcc271ab652bdeb24d3794877c900e6 to your computer and use it in GitHub Desktop.
Save nmonga91/7bcc271ab652bdeb24d3794877c900e6 to your computer and use it in GitHub Desktop.
Recipient Autocomplete

Retrieve Recipient Names or DUNS for the autocomplete text box

Route: /api/v2/autocomplete/recipient/

Method: POST

This route sends a request to the backend to retrieve recipient names or DUNS matching the specified search text.

Request example

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

Request Parameters Description

  • search_text - required - a string that contains the search term(s) on which to search for the recipient name or DUNS
  • 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": {
		[
			{
				"legal_entity_id": 1,
				"recipient_name": "COMMERCIAL TESTING LABORATORY, INC",
				"recipient_unique_id": "123456789"
			}
			...
		]
	}
}

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