public static void Main()
var client = new RestClient("https://www.sofi.com/afpq/ext/api/v1/cc-lead");
var request = new RestRequest(Method.POST);
request.AddHeader("content-type", "application/json");
request.AddHeader("Authorization", "Basic MWNhNTE4NjctZDAwNi00MTk1LWE1ZjgtMzUwYjAwMzBlM2E4OmRralNxZDhqNE9oYkc3VTRrRzdFVHppeUZjeGNQWUNpbGJXZ3pKbVZ5UFZHTkhkVFh4TVFWY0h1NldpREpmRjc=");
@" ""sharedId"":""05bbaf1c-9273-403f-8c7e-84fde4f1b570"",
@" ""ImpressionID"":""61f429c3-659e-40a8-94de-f45244b63bff"",
@" ""firstName"": ""Nancy"",
@" ""lastName"": ""Birkhead"",
@" ""email"": ""hiimbob@testemail.com"",
@" ""street"": ""378 East Street"",
@" ""city"": ""BLOOMSBURG"",
@" ""dateOfBirth"": ""1938-10-14"",
@" ""Phone"": ""+15704414264""
request.AddParameter("application/json", body, ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);