Skip to main content

Fetch Journal Entry

GET 

/v1/entities/:entity_id/journal_entries/:journal_entry_id

Retrieves the details of a journal entry that has previously been created. Supply the unique entity ID and journal entry ID that was returned from your previous request, and Bookkeep will return the corresponding journal entry information. Authentication

Request

Path Parameters

    entity_id stringrequired

    Unique identifier for the entity.

    journal_entry_id stringrequired

    Unique identifier for the journal entry.

Responses

Returns a journal entry if a valid identifier was provided.

Schema
    id stringrequired

    Unique identifier for the journal entry.

    entity_id stringrequired

    Unique identifier for the entity.

    date daterequired

    The date of the journal entry.

    status stringrequired

    Status of the journal entry.

    memo stringrequired

    Memo for the journal entry.

    docnumber stringrequired

    Document number for the journal entry.

    created_at date-timerequired

    When the journal entry was created.

    updated_at date-timerequired

    When the journal entry was last updated.

Loading...