GET
https://stoplight.io/mocks/replyteam/reply/765516802
/
contacts
/
stage-changes
curl --request GET \
  --url https://stoplight.io/mocks/replyteam/reply/765516802/contacts/stage-changes
{
  "data": [
    {
      "id": "<string>",
      "contactId": "<string>",
      "previousStage": 4,
      "newStage": 4,
      "changedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "total": 123,
    "page": 123,
    "limit": 123
  }
}

Query Parameters

fields
string

Comma-separated list of fields to include in the response. If not provided, all fields will be returned. For better performance, we recommend specifying only the fields you need.

Example:

"id,name,stage,previousStage"

since
string

Retrieve stage changes since a specific timestamp

limit
integer
default:50

Number of records to return per page

Required range: x <= 500
page
integer
default:1

Page number for pagination

Required range: x >= 1
fromStage
integer

Filter contacts that transitioned from a specific stage. Available stages:

1 = New 2 = Engaging 3 = Replied 4 = Interested 5 = Not interested 6 = Unresponsive 7 = Do not contact 8 = Bad contact info

toStage
integer

Filter contacts that transitioned to a specific stage. Available stages:

1 = New 2 = Engaging 3 = Replied 4 = Interested 5 = Not interested 6 = Unresponsive 7 = Do not contact 8 = Bad contact info

Response

200
application/json

Successfully retrieved stage history

The response is of type object.