token2getCardsRequest function

String token2getCardsRequest (
  1. String token
)

Converts user authentication token to get credit card http query request.

Implementation

String token2getCardsRequest(String token) {
  String request = GetCreditCardsEndpoint + '?token=' + token;
  return request;
}