Request : GET /papi/v1/proof/status
List of proofs statuses, with translations and properties. The proof id is used when changing the proof status via API. The proof statuses cannot be modified using the API.
| Parameter | Parameter Type | Mandatory | Description |
|---|---|---|---|
| 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 – A list of statuses.
[
{
"Id": "4",
"Name": {
"fi": "Odottaa kommentteja",
"en": "Waiting for comments",
"sv": "Väntar på kommentarer",
"de": "Warten auf Kommentare"
},
"IsSharingAllowed": true
},
{
"Id": "5",
"Name": {
"fi": "Odottaa hyväksyntää",
"en": "Waiting for approval",
"sv": "Väntar på godkännande",
"de": "Warten auf Genehmigung"
},
"IsSharingAllowed": true
}
]
cURL example
curl --location --request GET 'https://[EMMi instance]/papi/v1/proof/status' \
--header 'x-auth-token: [Session token]'


Post your comment on this topic.