Skip to content

Instantly share code, notes, and snippets.

@ola0x
Created August 9, 2020 17:49
Show Gist options
  • Save ola0x/1f822503451c284786872a455999e862 to your computer and use it in GitHub Desktop.
Save ola0x/1f822503451c284786872a455999e862 to your computer and use it in GitHub Desktop.
Consider this Url
www.app.net/api/searchtypes/862189/filters?Type=6&SearchText=School
Now this is the call
@GET("/api/searchtypes/{Id}/filters")
Call<FilterResponse> getFilterList(
@Path("Id") long customerId,
@Query("Type") String responseType,
@Query("SearchText") String searchText
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment