Skip to content

Commit

Permalink
fix typo in conversion endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaimoiseanu committed Feb 21, 2024
1 parent c2500b8 commit 6c34c45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MangoPay/Libraries/ApiBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,9 @@ protected function getLogger()
'deposits_get' => ['/deposit-preauthorizations/%s', RequestType::GET],
'deposits_cancel' => ['/deposit-preauthorizations/%s', RequestType::PUT],

'get_conversion_rate' => ['/conversion/rate/%s/%s', RequestType::GET],
'create_instant_conversion' => ['/instant-conversion', RequestType::POST],
'get_instant_conversion' => ['/instant-conversion/%s', RequestType::GET]
'get_conversion_rate' => ['/conversions/rate/%s/%s', RequestType::GET],
'create_instant_conversion' => ['/conversions/instant-conversion', RequestType::POST],
'get_instant_conversion' => ['/conversions/%s', RequestType::GET]
];

/**
Expand Down

0 comments on commit 6c34c45

Please sign in to comment.