// createPath takes three arguments
// 1. pathName: friendly name of the new path
// 2. pathValue: regular expression to compare to request path
// 3. requestType: GET, POST, PUT, DELETE
client.createPath("Test Path", "/test", "GET");
}
/**
* Demonstrates how to add an override to an existing path
*/