Skip to main content
GET
/
changelogs
/
{id}
Get a changelog
curl --request GET \
  --url https://app.leadconduit.com/changelogs/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "5fd438f91f0d12766e2bfee5",
  "action": "create",
  "changes": [
    {
      "action": "create",
      "target": "<string>",
      "delta_path": "<string>",
      "previous": {
        "value": "<string>",
        "index": 123
      },
      "current": {
        "value": "<string>",
        "index": 123
      }
    }
  ],
  "current_revision": {},
  "delta_from_last_revision": {},
  "type": "flow",
  "created_at": "2020-11-23T11:41:52Z",
  "user": {
    "id": "5fd4371e940df5a34a3888b2",
    "api_key": "2f1d5f29915b866c7a2fa5de29613104",
    "first_name": "<string>",
    "last_name": "<string>",
    "email": "<string>"
  }
}

Authorizations

Authorization
string
header
required

LeadConduit uses HTTP Basic Authentication with the username API and your API key as the password.

For example: API:1f1b96c9150d8050e858c043d543bb4eadae0e6f'

Path Parameters

id
string
required

ID of the changelog to get 24 character alpha-numeric BSON identifier

Pattern: ^[0-9a-fA-F]{24}$
Example:

"5fd4371e940df5a34a3888b2"

Response

200 - application/json

OK

id
string
required

ID of this Change Log

Pattern: ^[0-9a-fA-F]{24}$
Example:

"5fd438f91f0d12766e2bfee5"

action
enum<string>
required

Action performed

Available options:
create,
update,
delete,
changed,
moved,
removed,
added
changes
object[]
required

An object representing the normalization of the delta object

current_revision
object
required
delta_from_last_revision
object
required

An object representing the difference between the previous revision and the latest revision of the model

type
enum<string>
required

The type of resource that was changed.

Available options:
flow,
entity,
field,
report
created_at
string<date-time>
required

Read-only time the Change Log was created

Example:

"2020-11-23T11:41:52Z"

user
object

User information. This will only be present if the user was signed in when the changes were made