ZendeskApi_v2.Requests.Users.SetUserPhoto C# (CSharp) Method

SetUserPhoto() public method

public SetUserPhoto ( long userId, ZenFile photo ) : IndividualUserResponse
userId long
photo ZenFile
return IndividualUserResponse
        public IndividualUserResponse SetUserPhoto(long userId, ZenFile photo)
        {
            return GenericPut<IndividualUserResponse>(string.Format("users/{0}.json", userId), photo, "user[photo][uploaded_data]");
        }
#endif