Skip to content

Commit

Permalink
Fix identifier query parameter (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewelwell authored Sep 1, 2023
1 parent 10069e9 commit c471932
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import retrofit2.http.Query
interface FlagsmithRetrofitService {

@GET("identities/")
fun getIdentityFlagsAndTraits(@Query("identity") identity: String) : Call<IdentityFlagsAndTraits>
fun getIdentityFlagsAndTraits(@Query("identifier") identity: String) : Call<IdentityFlagsAndTraits>

@GET("flags/")
fun getFlags() : Call<List<Flag>>
Expand Down

0 comments on commit c471932

Please sign in to comment.