Skip to content

Commit

Permalink
fix: removed consumes mdx-media CrossAccountRecurringTransferController
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerGroesbeckMx committed Oct 9, 2024
1 parent f55185d commit 89b0ddb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public final ResponseEntity<?> deleteCrossAccountRecurringTransfer(@PathVariable
return new ResponseEntity<>(createMultiMapForResponse(response.getHeaders()), HttpStatus.NO_CONTENT);
}

@RequestMapping(value = "/users/{userId}/cross_account_transfers/recurring_cross_account_transfers/{id}/skip_next", method = RequestMethod.PUT, consumes = MDX_MEDIA)
@RequestMapping(value = "/users/{userId}/cross_account_transfers/recurring_cross_account_transfers/{id}/skip_next", method = RequestMethod.PUT)
public final ResponseEntity<?> skipCrossAccountRecurringTransfer(@PathVariable("id") String recurringTransferId) {
AccessorResponse<CrossAccountRecurringTransfer> response = gateway().crossAccount().crossAccountRecurring().skipNext(recurringTransferId);
return new ResponseEntity<>(createMultiMapForResponse(response.getHeaders()), HttpStatus.NO_CONTENT);
Expand Down

0 comments on commit 89b0ddb

Please sign in to comment.