Updated BiTSy to use v2 of the webservice to fetch merchants information.
This commit is contained in:
parent
6f132c049f
commit
b5371954e0
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ import retrofit2.http.Query
|
||||||
|
|
||||||
interface MerchantsWebservice {
|
interface MerchantsWebservice {
|
||||||
|
|
||||||
@GET("/api/v1/merchants")
|
@GET("/api/v2/merchants")
|
||||||
fun getMerchants(@Query(value = "\$skip") skip: Int,
|
fun getMerchants(@Query(value = "\$skip") skip: Int,
|
||||||
@Query(value = "\$limit") limit: Int = 50):
|
@Query(value = "\$limit") limit: Int = 50):
|
||||||
Call<FeathersResponse<Merchant>>
|
Call<FeathersResponse<Merchant>>
|
||||||
|
|
Loading…
Reference in a new issue