cURL
curl --request POST \ --url https://lancepilot.com/api/v3/workspaces/{workspace}/contacts/{contact}/messages/text \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "text": { "body": "this is test text message" } } '
{ "status": 201, "message": "Resource created successfully.", "data": {} }
Send a text message to a specific contact within a workspace.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the workspace.
ID of the contact.
Message sending parameters.
Show child attributes
201
"Resource created successfully."
Created resource data.