Skip to content

Instantly share code, notes, and snippets.

@sinclairtarget
Last active December 1, 2017 16:55
Show Gist options
  • Save sinclairtarget/1d4b89c3294aa177c052042d0c23a1dd to your computer and use it in GitHub Desktop.
Save sinclairtarget/1d4b89c3294aa177c052042d0c23a1dd to your computer and use it in GitHub Desktop.
BG API Request and Response

Client Lookup Endpoint

This endpoint takes a first name, last name, or nickname (or any combination of those) and returns a list of matching clients. You should use this endpoint to allow users of your app to search for a client.

Example 1

HTTP Request:

GET api.breakingground.org/clients/lookup?firstName="John"&lastName="Doe"&nickname="Red Cat"

JSON Response:

[
  {
    "clientId": 2356,
    "firstName": "John",
    "lastName": "Doe",
    "nickname": "Red Cat"
   }
]

Example 2

HTTP Request:

GET api.breakingground.org/clients/lookup?firstName="John"

JSON Response:

[
  {
    "clientId": 2356,
    "firstName": "John",
    "lastName": "Doe",
    "nickname": "Red Cat"
  },
  {
    "clientId": 5268,
    "firstName": "John",
    "lastName": "Smith"
  },
  {
    "clientId": 3256,
    "firstName": "John",
    "lastName": "Hamilton",
    "nickname" "Johnny H"
  },
  ...
]

Client "Show" Endpoint

This endpoint takes a client ID and returns information about that client. You could use this endpoint to get updated information about a particular client when you already know the client's ID.

Example 1

HTTP Request:

GET api.breakingground.org/clients/2356

JSON Response:

[
  {
    "clientId": 2356,
    "firstName": "John",
    "lastName": "Doe",
    "nickname": "Red Cat"
   }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment