Route: /api/v2/autocomplete/PSC/
Method: POST
This route sends a request to the backend to retrieve a partial or complete matching the specified search text.
{
"search_text": "test",
"limit": 10
}
search_text
- required - a string that contains the search term(s) on which to search for the recipient PSClimit
- 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.
{
"results": {
[
{
"award_id": 1,
"NAICS": "COMMERCIAL TESTING LABORATORY, INC",
}
...
]
}
}
Possible HTTP Status Codes:
- 400 : Missing parameters or limit is not a valid, positive integer
- 500 : All other errors
{
"message": "Sample error message"
}