Skip to content

Commit be8c366

Browse files
committed
slight cleanup
1 parent d1d2124 commit be8c366

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CustomerProfiles/get-customer-profile-ids.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def get_customer_profile_ids()
3333

3434
else
3535
puts response.messages.messages[0].text
36-
raise "Failed to get customer profile information with id #{request.customerProfileId}"
36+
raise "Failed to get customer profile information"
3737
end
3838
return response
3939
end

TransactionReporting/get-transaction-list.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ def get_transaction_List()
1515
request = AuthorizeNet::API::GetTransactionListRequest.new
1616
request.batchId = batchId
1717
request.paging = Paging.new;
18-
# Paging limit can be up to 1000
19-
request.paging.limit = '10'
18+
# Paging limit can be up to 1000 for this request
19+
request.paging.limit = '20'
2020
request.paging.offset = 1;
2121

2222
request.sorting = TransactionListSorting.new;

0 commit comments

Comments
 (0)