Get proof information

Request : GET /papi/v1/proof/[Proof Id]

Get more detailed information about a proof.

Parameter Parameter Type Mandatory Description
Proof Id Path yes Unique proof Id to get the information.
x-auth-token Header yes The authentication token must be provided as an x-auth-token header for every API request.
More information about authentication token.

Response: JSON – Proof Object.

Proof Id JSON path: $.Id
Latest version file version Id JSON path: $.CurrentVersionId
All fileversion Id’s JSON path: $.Versions..Id

{
    "Id": "2514",
    "Name": "EMMi proof",
    "ProjectId": "174",
    "ProofStatusId": "6",
    "Created": 1642082033,
    "Modified": 1642146967,
    "CurrentVersionId": "1463",
    "Versions": [
        {
            "Id": "1462",
            "Filename": "EMMi proof",
            "Extension": "png",
            "Created": 1642082033,
            "Size": 104229,
            "PreviewSupported": "Ready",
            "Info": {
                "Height": 564.0,
                "Width": 1424.0,
                "Unit": "px",
                "Resolution": 144.0,
                "Colorspace": "RGB"
            },
            "Activity": {
                "CommentCount": 0,
                "ApprovalCount": 0,
                "ConditionalApprovalCount": 0,
                "RejectCount": 0,
                "SharingGuestCount": 0,
                "IsSharingActive": false
            }
        },
        {
            "Id": "1463",
            "Filename": "EMMi proof v2",
            "Extension": "png",
            "Created": 1642082042,
            "Size": 34129,
            "PreviewSupported": "Ready",
            "Info": {
                "Height": 724.0,
                "Width": 507.0,
                "Unit": "px",
                "Colorspace": "RGB"
            },
            "Activity": {
                "CommentCount": 1,
                "ApprovalCount": 0,
                "ConditionalApprovalCount": 0,
                "RejectCount": 0,
                "SharingGuestCount": 0,
                "IsSharingActive": false
            }
        }
    ]
}

cURL example

curl --location --request GET 'https://[EMMi instance]/papi/v1/proof/[Proof Id] \
--header 'x-auth-token: [Session token]'

Feedback

Was this helpful?

Yes No
You indicated this topic was not helpful to you ...
Could you please leave a comment telling us why? Thank you!
Thanks for your feedback.

Post your comment on this topic.

Post Comment