func (client *Client) GetTransactionType(transactionType string) (*Response, error) {
    path := "/transaction-type"
    uri := fmt.Sprintf("%s%s/%s", client.apiBaseURL, path, transactionType)

    req, err := http.NewRequest("GET", uri, bytes.NewBuffer([]byte("")))