Created
February 22, 2018 17:05
-
-
Save Sharabaddin/5c53b846a4ccefcfc8e02c7d4b2fc3b8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Multipart | |
@POST("test/register") | |
Call<Result> registration( | |
@Part("email") String email, | |
@Part("password") String password, | |
@Part("firstname") String firstName, | |
@Part("lastname") String lastName, | |
@Part("gender") String gender, | |
@Part("birthday") String birthday, | |
@Part MultipartBody.Part filePart | |
); | |
Call<Result> call = service.registration("[email protected]","passwordQ13" , | |
"Александр", "Симоненко", "male", "1990-11-27", filePart); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment