projectal.entities.contact
View Source
from projectal.entity import Entity from projectal import api class Contact(Entity): """ Implementation of the [Contact](https://projectal.com/docs/latest/#tag/Contact) API. """ _path = 'contact' _name = 'CONTACT' @classmethod def create(cls, holder, entity): """Create a Contact `holder`: `uuId` of the owner `entity`: The fields of the entity to be created """ holder = holder['uuId'] if isinstance(holder, dict) else holder params = "?holder=" + holder return super().create(entity, params) @classmethod def clone(cls, uuId, holder, entity): url = '/api/contact/clone?holder={}&reference={}'.format(holder, uuId) response = api.post(url, entity) return response['jobClue']['uuId']
View Source
class Contact(Entity): """ Implementation of the [Contact](https://projectal.com/docs/latest/#tag/Contact) API. """ _path = 'contact' _name = 'CONTACT' @classmethod def create(cls, holder, entity): """Create a Contact `holder`: `uuId` of the owner `entity`: The fields of the entity to be created """ holder = holder['uuId'] if isinstance(holder, dict) else holder params = "?holder=" + holder return super().create(entity, params) @classmethod def clone(cls, uuId, holder, entity): url = '/api/contact/clone?holder={}&reference={}'.format(holder, uuId) response = api.post(url, entity) return response['jobClue']['uuId']
Implementation of the Contact API.
View Source
@classmethod def create(cls, holder, entity): """Create a Contact `holder`: `uuId` of the owner `entity`: The fields of the entity to be created """ holder = holder['uuId'] if isinstance(holder, dict) else holder params = "?holder=" + holder return super().create(entity, params)
Create a Contact
holder
: uuId
of the owner
entity
: The fields of the entity to be created
View Source
@classmethod def clone(cls, uuId, holder, entity): url = '/api/contact/clone?holder={}&reference={}'.format(holder, uuId) response = api.post(url, entity) return response['jobClue']['uuId']
Clones an entity and returns its uuId
.
Each entity has its own set of required values when cloning. Check the API documentation of that entity for details.
Inherited Members
- projectal.entity.Entity
- Entity
- get
- update
- delete
- save
- history
- list
- match
- match_startswith
- match_endswith
- search
- query
- profile_get
- profile_set
- changes
- set_readonly
- builtins.dict
- setdefault
- pop
- popitem
- keys
- items
- values
- fromkeys
- clear
- copy