For Developers

Get Stop

GET https://ed.link/api/v2/graph/stops/:stop_id

Retrieve information about a specific Stop.

Request Parameters

ParameterTypeDescription
stop_idstringThe UUID of the desired Stop.

Sample Request

axios.get('https://ed.link/api/v2/graph/stops/e760bade-c6a3-540d-b800-cf67ce1b9858', {
    headers: {
        authorization: `Bearer ${integration_access_token}`
    }
});

Sample Response

{
    "$data": {
        "id": "e760bade-c6a3-540d-b800-cf67ce1b9858",
        "created_date": "2021-07-13T17:45:27.570Z",
        "updated_date": "2021-07-13T17:45:27.570Z",
        "properties": {},
        "name": "Edlink Office",
        "description": "A description of the stop.",
        "comments": "A very useful comment.",
        "type": "business",
        "flags": [],
        "address": {
            "street_address": "1011 Sanjacinto Blvd",
            "unit_number": "",
            "city": "Austin",
            "state": "TX",
            "postal_code": "78701",
            "country": "USA",
            "phone": "555-987-6543",
            "latitude": 30.267,
            "longitude": 97.742
        }
    },
    "$request": "00000000-0000-0000-0000-000000000000"
}