Features - Connectors Framework - Inbound REST API - Generic Entities
Generic Entity
Generic Entity
All API endpoints for generic entity.
Parameters
Allows the API to create and update your generic entities. You can retrieve individual generic entities as well as all generic entities.
mobiworkGenericEntityId
Required
Long
A unique ID representing an internal ID at MobiWork
externalid
Optional
String
An ID used to represent a third party's ID for the generic entity
name
Optional
String
The name of the generic entity
createdDate
Optional
String
The date the generic entity was created in the MobiWork system
primaryAddress
Optional
Address Object
The primary address associated with the generic entity
primaryContact
Optional
Contact Object
The primary contact associated with the generic entity
Example
<genericEntity>
<mobiworkGenericEntityId>1</mobiworkGenericEntityId>
<externalId>ABC-123</externalId>
<name>Generic Entitle Sample</name>
<createdDate>01/01/2019</createdDate>
<primaryAddress>
<addressId>1</addressId>
<address1>123 Way Place</address1>
<address2></address2>
<city>Delray Beach</city>
<state>Florida</state>
<zipCode>12345</zipCode>
<countryId>1</countryId>v <latitude></latitude>
<longitude></longitude>
<name>Primary Address</name>
</primaryAddress>
<primaryContact>
<genericEntityContactId>1</genericEntityContactId>
<genericEntityId>1</genericEntityId>
<title>Primary</title>
<firstName>John</firstName>
<lastName>Doe</lastName>
<email>john.doe@company.com</email>
<phoneNumber>1234567891</phoneNumber>
<faxNumber>1234567891</faxNumber>
<enabled>true</enabled>
<createdDate>01/01/2019</createdDate>
</primaryContact>
</genericEntity>