Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cant create contact as lead #164

Open
mohamadDev opened this issue Jul 13, 2020 · 0 comments
Open

Cant create contact as lead #164

mohamadDev opened this issue Jul 13, 2020 · 0 comments

Comments

@mohamadDev
Copy link

mohamadDev commented Jul 13, 2020

actually i solved it but because it was a minor fix I am dropping my solution here
solution
create a class "lead" extends contact

public class Lead: Contact
    {
        public string role { get; set; }
        public Lead()
        {
            role = "lead";
        }
    }

Create Lead

Authentication auth = new Authentication("yourAPITokenHere");
RestClientFactory factory = new RestClientFactory(auth);
ContactsClient contactsClient = new ContactsClient(factory);
var cont = new Lead() {email = "[email protected]", app_id= "yourppidhere"  };
contactsClient.Create(cont);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant