# Get commit details Endpoint: POST /code/api/v1/repos/{repo_identifier}/path-details Version: 1.0 Security: x-api-key ## Query parameters: - `accountIdentifier` (string, required) Account Identifier for the Entity. - `orgIdentifier` (string) Organization Identifier for the Entity. - `projectIdentifier` (string) Project Identifier for the Entity. - `git_ref` (string) The git reference (branch / tag / commitID) that will be used to retrieve the data. If no value is provided the default branch of the repository is used. ## Path parameters: - `repo_identifier` (string, required) ## Request fields (application/json): - `paths` (array,null) ## Response 200 fields (application/json): - `details` (array,null) - `details.last_commit` (object) - `details.last_commit.author` (object) - `details.last_commit.author.identity` (object) - `details.last_commit.author.identity.email` (string) - `details.last_commit.author.identity.name` (string) - `details.last_commit.author.when` (string) - `details.last_commit.committer` (object) - `details.last_commit.message` (string) - `details.last_commit.parent_shas` (array) - `details.last_commit.sha` (string) Git object hash - `details.last_commit.signature` (object,null) - `details.last_commit.signature.created` (integer) - `details.last_commit.signature.key_fingerprint` (string) - `details.last_commit.signature.key_id` (string) - `details.last_commit.signature.key_scheme` (string) Enum: "pgp", "ssh" - `details.last_commit.signature.result` (string) Enum: "bad", "good", "invalid", "key_expired", "revoked", "unsupported", "unverified" - `details.last_commit.signature.updated` (integer) - `details.last_commit.stats` (object) - `details.last_commit.stats.files` (array) - `details.last_commit.stats.files.changes` (integer) - `details.last_commit.stats.files.deletions` (integer) - `details.last_commit.stats.files.insertions` (integer) - `details.last_commit.stats.files.old_path` (string) - `details.last_commit.stats.files.path` (string) - `details.last_commit.stats.files.status` (string) - `details.last_commit.stats.total` (object) - `details.last_commit.title` (string) ## Response 401 fields (application/json): - `message` (string) - `values` (object) ## Response 403 fields (application/json): - `message` (string) - `values` (object) ## Response 404 fields (application/json): - `message` (string) - `values` (object) ## Response 500 fields (application/json): - `message` (string) - `values` (object)