I'm using Abenity API example as follows:
abenityApi.PostSsoMember(new SsoMemberPayload()
{
Address = "1 Main St.",
City = "Nashville",
ClientUserId = "1",
Country = "US",
Email = "jane.doe@maildomain.com",
Username = "jane.doe@maildomain.com",
FirstName = "Jane",
LastName = "Doe",
SendWelcomeEmail = true,
State = "TN",
Zip = "37201"
});
with correct api keys and I'm always receiving following error:
{"method":"sso_member","status":"fail","error":{"signature":"Creation Time (crea tion_time) is required"}}
Can you help me ? thanks