Skip to content
  • There are no suggestions because the search field is empty.

DeleteUserAssociation (Push Method)

DeleteUserAssociation

Deletes an existing association between a Vendor User and a Carrier (Company).
Only Vendor Admins can delete user associations. Vendor Users cannot delete associations.

Request
Parameter Type Description
Company String Required. Company (Carrier) identifier from GetCompanies.
User String Required. Email of the user whose association should be removed.
Response
Parameter Type Description
Success Message String Returned when the association is successfully deleted.
Errors Array Contains error message(s) should an error occur.
Example (C#)

 

// setup request parameters
ParametersForUserAssociation objDeleteUserAssociationParams = new ParametersForUserAssociation
{
    Company = "Carrier name",
    User = "testuser@emailadress.com"
};

dynamic DeleteUserAssociationResponse = apiClient.EditUserAssociation(objDeleteUserAssociationParams);
Console.WriteLine("Send User Association Response: {0}", DeleteUserAssociationResponse);