Companies
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
Items Per Page
Page Number
Sorting Order
Sorting Key
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField and DictField are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField is handled like ForeignKey in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)).
For EmbeddedDocumentField also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField and GenericEmbeddedDocumentField are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField and probably will work wrong.
GET /api/company/?items_per_page=1&page=1 HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"id": "text",
"company_id": "text",
"display_id": "text",
"company_name": "text",
"domain": "text",
"linkedin_url": "text",
"twitter_url": "text",
"hq_location": "text",
"hq_country": "text",
"industry": "text",
"employee_range": "text",
"estimated_arr": "text",
"description": "text",
"logo_url": "text",
"company_owner": "text",
"company_type": "text",
"lead_status": "text",
"icp_fit": "text",
"customer_segment": "text",
"connection_strength": "text",
"connection_source": "text",
"operating_regions": "text",
"category": "text",
"vendor_being_replaced": "text",
"replacement_urgency": "text",
"partner_type": "text",
"parent_company": "text",
"investors": "text",
"partners": "text",
"subsidiaries": "text",
"contacts_count": "text",
"is_draft": true,
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"record_source": "text",
"custom_fields": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"associated_deal_project": "text"
}
]JWT token obtained from /api/login/. Pass as: Authorization: Bearer
No response body
No content
POST /api/company/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 55
{
"company_name": "Acme Corporation",
"domain": "acme.com"
}No response body
No content
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField and DictField are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField is handled like ForeignKey in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)).
For EmbeddedDocumentField also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField and GenericEmbeddedDocumentField are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField and probably will work wrong.
GET /api/company/{id}/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "text",
"company_id": "text",
"display_id": "text",
"company_name": "text",
"domain": "text",
"linkedin_url": "text",
"twitter_url": "text",
"hq_location": "text",
"hq_country": "text",
"industry": "text",
"employee_range": "text",
"estimated_arr": "text",
"description": "text",
"logo_url": "text",
"company_owner": "text",
"company_type": "text",
"lead_status": "text",
"icp_fit": "text",
"customer_segment": "text",
"connection_strength": "text",
"connection_source": "text",
"operating_regions": "text",
"category": "text",
"vendor_being_replaced": "text",
"replacement_urgency": "text",
"partner_type": "text",
"parent_company": "text",
"investors": "text",
"partners": "text",
"subsidiaries": "text",
"contacts_count": "text",
"is_draft": true,
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"record_source": "text",
"custom_fields": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"associated_deal_project": "text"
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
No response body
No content
PUT /api/company/{id}/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 71
{
"company_id": "existing_company_id",
"company_name": "Acme Corp Updated"
}No response body
No content
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
No response body
No content
DELETE /api/company/{id}/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No response body
No content
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField and DictField are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField is handled like ForeignKey in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)).
For EmbeddedDocumentField also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField and GenericEmbeddedDocumentField are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField and probably will work wrong.
GET /api/company/{id}/completed-meetings/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "text",
"company_id": "text",
"display_id": "text",
"company_name": "text",
"domain": "text",
"linkedin_url": "text",
"twitter_url": "text",
"hq_location": "text",
"hq_country": "text",
"industry": "text",
"employee_range": "text",
"estimated_arr": "text",
"description": "text",
"logo_url": "text",
"company_owner": "text",
"company_type": "text",
"lead_status": "text",
"icp_fit": "text",
"customer_segment": "text",
"connection_strength": "text",
"connection_source": "text",
"operating_regions": "text",
"category": "text",
"vendor_being_replaced": "text",
"replacement_urgency": "text",
"partner_type": "text",
"parent_company": "text",
"investors": "text",
"partners": "text",
"subsidiaries": "text",
"contacts_count": "text",
"is_draft": true,
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"record_source": "text",
"custom_fields": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"associated_deal_project": "text"
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
Items Per Page
Page Number
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField and DictField are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField is handled like ForeignKey in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)).
For EmbeddedDocumentField also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField and GenericEmbeddedDocumentField are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField and probably will work wrong.
GET /api/company/{id}/contacts/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "text",
"company_id": "text",
"display_id": "text",
"company_name": "text",
"domain": "text",
"linkedin_url": "text",
"twitter_url": "text",
"hq_location": "text",
"hq_country": "text",
"industry": "text",
"employee_range": "text",
"estimated_arr": "text",
"description": "text",
"logo_url": "text",
"company_owner": "text",
"company_type": "text",
"lead_status": "text",
"icp_fit": "text",
"customer_segment": "text",
"connection_strength": "text",
"connection_source": "text",
"operating_regions": "text",
"category": "text",
"vendor_being_replaced": "text",
"replacement_urgency": "text",
"partner_type": "text",
"parent_company": "text",
"investors": "text",
"partners": "text",
"subsidiaries": "text",
"contacts_count": "text",
"is_draft": true,
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"record_source": "text",
"custom_fields": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"associated_deal_project": "text"
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
Items Per Page
Page Number
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField and DictField are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField is handled like ForeignKey in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)).
For EmbeddedDocumentField also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField and GenericEmbeddedDocumentField are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField and probably will work wrong.
GET /api/company/{id}/contacts-for-invite/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "text",
"company_id": "text",
"display_id": "text",
"company_name": "text",
"domain": "text",
"linkedin_url": "text",
"twitter_url": "text",
"hq_location": "text",
"hq_country": "text",
"industry": "text",
"employee_range": "text",
"estimated_arr": "text",
"description": "text",
"logo_url": "text",
"company_owner": "text",
"company_type": "text",
"lead_status": "text",
"icp_fit": "text",
"customer_segment": "text",
"connection_strength": "text",
"connection_source": "text",
"operating_regions": "text",
"category": "text",
"vendor_being_replaced": "text",
"replacement_urgency": "text",
"partner_type": "text",
"parent_company": "text",
"investors": "text",
"partners": "text",
"subsidiaries": "text",
"contacts_count": "text",
"is_draft": true,
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"record_source": "text",
"custom_fields": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"associated_deal_project": "text"
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
Cursor for next page
Items Per Page
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField and DictField are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField is handled like ForeignKey in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)).
For EmbeddedDocumentField also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField and GenericEmbeddedDocumentField are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField and probably will work wrong.
GET /api/company/{id}/deals/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "text",
"company_id": "text",
"display_id": "text",
"company_name": "text",
"domain": "text",
"linkedin_url": "text",
"twitter_url": "text",
"hq_location": "text",
"hq_country": "text",
"industry": "text",
"employee_range": "text",
"estimated_arr": "text",
"description": "text",
"logo_url": "text",
"company_owner": "text",
"company_type": "text",
"lead_status": "text",
"icp_fit": "text",
"customer_segment": "text",
"connection_strength": "text",
"connection_source": "text",
"operating_regions": "text",
"category": "text",
"vendor_being_replaced": "text",
"replacement_urgency": "text",
"partner_type": "text",
"parent_company": "text",
"investors": "text",
"partners": "text",
"subsidiaries": "text",
"contacts_count": "text",
"is_draft": true,
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"record_source": "text",
"custom_fields": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"associated_deal_project": "text"
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
Cursor for next page
Items Per Page
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField and DictField are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField is handled like ForeignKey in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)).
For EmbeddedDocumentField also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField and GenericEmbeddedDocumentField are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField and probably will work wrong.
GET /api/company/{id}/projects/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "text",
"company_id": "text",
"display_id": "text",
"company_name": "text",
"domain": "text",
"linkedin_url": "text",
"twitter_url": "text",
"hq_location": "text",
"hq_country": "text",
"industry": "text",
"employee_range": "text",
"estimated_arr": "text",
"description": "text",
"logo_url": "text",
"company_owner": "text",
"company_type": "text",
"lead_status": "text",
"icp_fit": "text",
"customer_segment": "text",
"connection_strength": "text",
"connection_source": "text",
"operating_regions": "text",
"category": "text",
"vendor_being_replaced": "text",
"replacement_urgency": "text",
"partner_type": "text",
"parent_company": "text",
"investors": "text",
"partners": "text",
"subsidiaries": "text",
"contacts_count": "text",
"is_draft": true,
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"record_source": "text",
"custom_fields": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"associated_deal_project": "text"
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
Cursor for next page
Items Per Page
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField and DictField are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField is handled like ForeignKey in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)).
For EmbeddedDocumentField also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField and GenericEmbeddedDocumentField are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField and probably will work wrong.
GET /api/company/{id}/tasks/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "text",
"company_id": "text",
"display_id": "text",
"company_name": "text",
"domain": "text",
"linkedin_url": "text",
"twitter_url": "text",
"hq_location": "text",
"hq_country": "text",
"industry": "text",
"employee_range": "text",
"estimated_arr": "text",
"description": "text",
"logo_url": "text",
"company_owner": "text",
"company_type": "text",
"lead_status": "text",
"icp_fit": "text",
"customer_segment": "text",
"connection_strength": "text",
"connection_source": "text",
"operating_regions": "text",
"category": "text",
"vendor_being_replaced": "text",
"replacement_urgency": "text",
"partner_type": "text",
"parent_company": "text",
"investors": "text",
"partners": "text",
"subsidiaries": "text",
"contacts_count": "text",
"is_draft": true,
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"record_source": "text",
"custom_fields": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"associated_deal_project": "text"
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField and DictField are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField is handled like ForeignKey in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)).
For EmbeddedDocumentField also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField and GenericEmbeddedDocumentField are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField and probably will work wrong.
GET /api/company/{id}/upcoming-meetings/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "text",
"company_id": "text",
"display_id": "text",
"company_name": "text",
"domain": "text",
"linkedin_url": "text",
"twitter_url": "text",
"hq_location": "text",
"hq_country": "text",
"industry": "text",
"employee_range": "text",
"estimated_arr": "text",
"description": "text",
"logo_url": "text",
"company_owner": "text",
"company_type": "text",
"lead_status": "text",
"icp_fit": "text",
"customer_segment": "text",
"connection_strength": "text",
"connection_source": "text",
"operating_regions": "text",
"category": "text",
"vendor_being_replaced": "text",
"replacement_urgency": "text",
"partner_type": "text",
"parent_company": "text",
"investors": "text",
"partners": "text",
"subsidiaries": "text",
"contacts_count": "text",
"is_draft": true,
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"record_source": "text",
"custom_fields": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"associated_deal_project": "text"
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
No response body
No content
GET /api/company/activities/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No response body
No content
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
No response body
No content
POST /api/company/bulk-delete/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 38
{
"ANY_ADDITIONAL_PROPERTY": "anything"
}No response body
No content
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
No response body
No content
POST /api/company/bulk-publish/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 38
{
"ANY_ADDITIONAL_PROPERTY": "anything"
}No response body
No content
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
No response body
No content
POST /api/company/category/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 46
{
"value": "crm",
"name": "Updated Category Name"
}No response body
No content
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
No response body
No content
POST /api/company/del_category/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"value": "crm"
}No response body
No content
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
No response body
No content
GET /api/company/field-config/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No response body
No content
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
No response body
No content
PUT /api/company/field-config/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 38
{
"ANY_ADDITIONAL_PROPERTY": "anything"
}No response body
No content
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
No response body
No content
POST /api/company/import/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 38
{
"ANY_ADDITIONAL_PROPERTY": "anything"
}No response body
No content
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
No response body
No content
GET /api/company/options/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No response body
No content
Last updated