GetTableRecord
Official API
Implemented Class
Gets detailed information about a TableRecord in a Pipefy Table.
Arguments
<In> TableRecordID : string
The ID of the TableRecord to be obtained.
You can find this info from the API or from the link when accessing it through the web
<Out> TableRecord : JObject
TableRecord obtained (JObject).
Example object:
{
"created_at": "2019-03-20T15:45:54-03:00",
"created_by": {
"email": "your.email@company.com",
"id": "123456",
"name": "Your Name"
},
"due_date": "2019-04-05T12:00:00-03:00",
"finished_at": null,
"id": "12345678",
"record_fields": [
{
"array_value": [ "path/to/file.pdf" ],
"datetime_value": null,
"field": {
"id": "report",
"type": "attachment"
},
"name": "Report",
"value": "[\"path/to/file.pdf\"]"
},
{
"array_value": null,
"datetime_value": null,
"field": {
"id": "simple_code",
"type": "number"
},
"name": "Simple Code",
"value": "18471"
}
],
"status": {
"id": "1234567",
"name": "Active"
},
"table": {
"id": "M4a7Dqr6",
"name": "TableName"
},
"title": "Record Title",
"updated_at": "2019-03-21T13:24:59-03:00",
"url": "http://app.pipefy.com/database_v2/tables/M4a7Dqr6-tablename/table_records/12345678"
}
<Out> TableRecordFieldsDictionary : Dictionary<string, object>
The custom fields values in Dictionary form.
Inherited Arguments
<In> Bearer : string
The Bearer authorization token generated by Pipefy.
<In> Timeout : int
The timeout limit (in ms) for the request to be completed.
<Out> Status : string
A brief status message of the result of the action.
<Out> Success : boolean
True if the action was successful.