| http \
GET \
https://api.example.com/api/marketplace-project-update-requests/ \
Authorization:"Token YOUR_API_TOKEN"
|
| from waldur_api_client.client import AuthenticatedClient
from waldur_api_client.api.marketplace_project_update_requests import marketplace_project_update_requests_list # (1)
client = AuthenticatedClient(
base_url="https://api.example.com", token="YOUR_API_TOKEN"
)
response = marketplace_project_update_requests_list.sync(client=client)
for item in response:
print(item)
|
- API Source:
marketplace_project_update_requests_list
| import { marketplaceProjectUpdateRequestsList } from 'waldur-js-client';
try {
const response = await marketplaceProjectUpdateRequestsList({
auth: "Token YOUR_API_TOKEN"
});
console.log('Success:', response);
} catch (error) {
console.error('Error:', error);
}
|
| Name |
Type |
Description |
customer_uuid |
string (uuid) |
|
offering_uuid |
string (uuid) |
|
page |
integer |
A page number within the paginated result set. |
page_size |
integer |
Number of results to return per page. |
project_uuid |
string (uuid) |
|
provider_uuid |
string (uuid) |
|
state |
array |
|
200 -
The response body is an array of objects, where each object has the following structure:
| Field |
Type |
Description |
uuid |
string (uuid) |
|
state |
string |
|
customer_name |
string |
|
customer_uuid |
string |
|
offering_name |
string |
|
offering_uuid |
string (uuid) |
|
created |
string (date-time) |
|
reviewed_at |
string (date-time) |
Timestamp when the review was completed |
reviewed_by_full_name |
string |
|
reviewed_by_uuid |
string (uuid) |
|
review_comment |
string |
Optional comment provided during review |
old_name |
string |
|
new_name |
string |
|
old_description |
string |
|
new_description |
string |
|
old_end_date |
string (date) |
|
new_end_date |
string (date) |
|
old_oecd_fos_2007_code |
string |
|
old_oecd_fos_2007_label |
string |
|
new_oecd_fos_2007_code |
string |
|
new_oecd_fos_2007_label |
string |
|
old_is_industry |
boolean |
|
new_is_industry |
boolean |
|
created_by |
integer |
|