curl --request GET \
--url https://api-next.ofauth.com/v2/access/self/release-forms \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <api-key>'{
"list": [
{
"id": 123,
"type": "<string>",
"name": "<string>",
"partnerId": 123,
"code": "<string>",
"status": "<string>",
"createdAt": "<string>",
"approvedAt": "<string>",
"lastChangedAt": "<string>",
"userName": "<string>",
"hasUser": true,
"isHidden": true
}
],
"hasMore": true
}List release forms
Permission Required: profile:read
curl --request GET \
--url https://api-next.ofauth.com/v2/access/self/release-forms \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <api-key>'{
"list": [
{
"id": 123,
"type": "<string>",
"name": "<string>",
"partnerId": 123,
"code": "<string>",
"status": "<string>",
"createdAt": "<string>",
"approvedAt": "<string>",
"lastChangedAt": "<string>",
"userName": "<string>",
"hasUser": true,
"isHidden": true
}
],
"hasMore": true
}Requires a connection via the x-connection-id header.
Number of items to return (1-20, default: 10)
1 <= x <= 20Number of items to skip (default: 0)
x >= 0Filter: all forms or only pending
all, pending Sort by date or name
date, name Sort direction
asc, desc Search/filter text
100Was this page helpful?