Skip to content

Message

Resource representing a message linked to a job in your workspace.

The Message resource represents a communication exchanged between a user and a Taxfyle Pro within the context of a job. Messages can be sent and received throughout the lifetime of a job as long as the job hasn’t been Closed or Canceled.

When a message is sent, it is associated with the appropriate job member.

The Message APIs allow you to post messages to a job, retrieve the full message history of a job, and access message content.

Endpoints

MethodUrl
GET/v1.0/jobs/{job_id}/messages
POST/v1.0/jobs/{job_id}/messages

Message Properties

id

The message's ID.

text

The message's text.

sender_user_id

The unique identifier of the job member who sent the message.

create_time

When the message was created. A timestamp in format 2025-07-15T13:45:25.781Z.

Copied
1{
2 "id": "499d692d-67aa-4127-a45c-b9e27f54afad",
3 "text": "Message's text",
4 "sender_user_id": "4e5ccdf6-a9e1-4025-bff1-96cfc105b2a6",
5 "create_time": "2025-07-15T13:45:25.781Z"
6}
Last updated on July 15, 2025