readLoyaltyProgram method

Future<LoyaltyProgram> readLoyaltyProgram({
  1. required String programId,
  2. String? authToken,
})

Retrieves the loyalty program in a seller's account, specified by the program ID or the keyword main.

Implementation

Future<LoyaltyProgram> readLoyaltyProgram({
  required String programId,
  String? authToken,
}) async {

  authToken ??= authenticationService.getCachedToken()?.accessToken;

  Map<String, String> headers = {
    "Authorization": "Bearer ${authToken ?? ""}",
    'Content-Type': 'application/json; charset=UTF-8',
    'Accept': 'application/json',

  };

  Uri endpoint = Uri.https(
      baseUrl, "/v2/loyalty/programs/$programId");

  //print (endpoint.toString());

  var response = await
  http.get(endpoint, headers: headers);

  if (response.statusCode == 200) {
    print (jsonDecode(response.body));
    return LoyaltyProgramResponse.fromJson(jsonDecode(response.body)).program!;
  }
  else {
    print (response.body);
    throw LoyaltyException(statusCode: response.statusCode, message: LoyaltyProgramResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
  }
}