Retrieve a payout request timeline message
Experimental

Request

Retrieves a payout request timeline message with a specified ID.

Security
SecretApiKey or JWT
Path
idstring, <= 50 characters^[@~\-\.\w]+$required

ID of the resource.

messageIdstringrequired

ID of the timeline message.

curl -i -X GET \
  'https://www.rebilly.com/_mock/catalog/all/payout-requests/{id}/timeline/{messageId}' \
  -H 'REB-APIKEY: YOUR_API_KEY_HERE'

Responses

Payout request timeline message retrieved.

Bodyapplication/json
idstring, <= 50 charactersread-onlyrequired

ID of the message.

Example:"tlm_0YVDMDE2BMC6KBB5MX76RF6T80"
typestringread-onlyrequired

Type of timeline event.

Enum:"timeline-comment-created""payout-request-created""payout-request-ready""payout-request-returned-to-pending""payout-request-approved""payout-request-approval-undone""payout-request-allocated""payout-request-processing-started""payout-request-fulfilled""payout-request-canceled"
occurredTimestring, (date-time)(ServerTimestamp)read-onlyrequired

Date and time when the timeline event occurred.

triggeredBystringread-onlyrequired

Who or what triggered this event.

Enum:"rebilly""app""direct-api"
messagestringrequired

Human-readable message describing the timeline event.

extraDataobject(TimelineExtraData)read-onlyrequired

Additional data.

Response
{ "id": "tlm_0YVDMDE2BMC6KBB5MX76RF6T80", "type": "timeline-comment-created", "occurredTime": "2019-08-24T14:15:22Z", "triggeredBy": "rebilly", "message": "string", "extraData": { "actions": [], "tables": [], "author": {}, "mentions": {}, "links": [] } }