Arcserve Cloud Direct API (1.0.0)
Download OpenAPI specification:Download
API Reference for Arcserve Cloud Direct Menu
List Licenses
List Licenses
path Parameters
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
query Parameters
page | integer >= 1 Default: 1 Page number of the results to fetch |
per_page | integer [ 1 .. 100 ] Default: 30 Results per page |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Responses
OK
Bad Request
Unauthorized
Forbidden
Internal Server Error
Response samples
- 200
- 400
- 401
- 403
- 500
{- "page": 1,
- "per_page": 30,
- "total_count": 2,
- "licenses": [
- {
- "id": "c79a3d51-b6bb-4d2b-a295-7080ba77eef6",
- "name": "Sample Active License",
- "email_address": "user1@example.com",
- "arcserve_business_continuity_cloud_login_mail_address": "user2@example.com",
- "status": "Active",
- "tenant_id": "c9a8c3e852f64840a67528d259880bad",
- "plan_id": "00713021-9aea-41da-9a88-87760c08fa72",
- "plan_name_ja": "100GB",
- "plan_name_en": "100GB",
- "plan_quantity": 2,
- "plan_quantity_before_change": 1,
- "offer_start_request_date": "2022-07-15",
- "offer_start_date": "2022-07-15",
- "plan_quantity_change_request_date": "2022-08-10",
- "plan_quantity_change_date": "2022-08-10",
- "deletion_date": null,
- "created_at": "2022-07-01T14:15:22Z",
- "updated_at": "2022-08-09T14:15:22Z",
- "orders": [
- {
- "order_id": "123456",
- "fulfillment_id": "123456789",
- "issued_at": "2022-07-14T14:15:22Z"
}, - {
- "order_id": "654321",
- "fulfillment_id": "987654321",
- "issued_at": "2022-08-09T14:15:22Z"
}
]
}, - {
- "id": "6e5ecdf9-730a-8fca-01b1-362eca3f40a4",
- "name": "Sample Under Review License",
- "email_address": "user1@example.com",
- "arcserve_business_continuity_cloud_login_mail_address": "user2@example.com",
- "status": "Under Review",
- "tenant_id": "c9a8c3e852f64840a67528d259880bad",
- "plan_id": "c855badc-4446-7f84-2b6b-f1bcd759cd6e",
- "plan_name_ja": "1TB",
- "plan_name_en": "1TB",
- "plan_quantity": 5,
- "plan_quantity_before_change": null,
- "offer_start_request_date": "2022-07-15",
- "offer_start_date": null,
- "plan_quantity_change_request_date": null,
- "plan_quantity_change_date": null,
- "deletion_date": null,
- "created_at": "2022-07-01T14:15:22Z",
- "updated_at": "2022-07-01T14:15:22Z",
- "orders": [ ]
}
]
}
Create License
Create License
path Parameters
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Request Body schema: application/json
license required | object |
Responses
Accepted
Bad Request
Unauthorized
Forbidden
Internal Server Error
Request samples
- Payload
{- "license": {
- "name": "Sample License",
- "email_address": "user1@example.com",
- "arcserve_business_continuity_cloud_login_mail_address": "user2@example.com",
- "plan_id": "00713021-9aea-41da-9a88-87760c08fa72",
- "plan_quantity": 1,
- "offer_start_request_date": "2022-07-15"
}
}
Response samples
- 202
- 400
- 401
- 403
- 500
{- "license": {
- "id": "b6a508c5-701c-43f2-a450-13e9d18d8e63",
- "name": "Sample License",
- "email_address": "user1@example.com",
- "arcserve_business_continuity_cloud_login_mail_address": "user2@example.com",
- "status": "Under Review",
- "tenant_id": "c9a8c3e852f64840a67528d259880bad",
- "plan_id": "00713021-9aea-41da-9a88-87760c08fa72",
- "plan_name_ja": "100GB",
- "plan_name_en": "100GB",
- "plan_quantity": 1,
- "plan_quantity_before_change": null,
- "offer_start_request_date": "2022-07-15",
- "offer_start_date": null,
- "plan_quantity_change_request_date": null,
- "plan_quantity_change_date": null,
- "deletion_date": null,
- "created_at": "2019-07-01T14:15:22Z",
- "updated_at": "2019-07-01T14:15:22Z",
- "orders": [ ]
}
}
Update License
Update License
path Parameters
license_id required | string <uuid> License ID |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Request Body schema: application/json
license required | object |
Responses
OK if only name and email_address are updated
Accepted if properties other than name and email_address are updated
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Request samples
- Payload
{- "license": {
- "name": "Sample License",
- "email_address": "user@example.com",
- "plan_quantity": 2,
- "plan_quantity_change_request_date": "2022-08-10"
}
}
Response samples
- 200
- 202
- 400
- 401
- 403
- 404
- 500
{- "license": {
- "id": "2f380d88-c58b-4bea-b611-fe4d1f3e1eae",
- "name": "Sample License",
- "email_address": "user1@example.com",
- "arcserve_business_continuity_cloud_login_mail_address": "user2@example.com",
- "status": "Active",
- "tenant_id": "c9a8c3e852f64840a67528d259880bad",
- "plan_id": "00713021-9aea-41da-9a88-87760c08fa72",
- "plan_name_ja": "100GB",
- "plan_name_en": "100GB",
- "plan_quantity": 2,
- "plan_quantity_before_change": 1,
- "offer_start_request_date": "2022-07-15",
- "offer_start_date": "2022-07-15",
- "plan_quantity_change_request_date": "2022-08-10",
- "plan_quantity_change_date": "2022-08-10",
- "deletion_date": null,
- "created_at": "2022-07-01T14:15:22Z",
- "updated_at": "2022-08-09T14:15:22Z",
- "orders": [
- {
- "order_id": "123456",
- "fulfillment_id": "123456789",
- "issued_at": "2022-07-14T14:15:22Z"
}, - {
- "order_id": "654321",
- "fulfillment_id": "987654321",
- "issued_at": "2022-08-09T14:15:22Z"
}
]
}
}
Delete License
Delete License
path Parameters
license_id required | string <uuid> License ID |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Responses
Accepted
No Content (Only if license status is Send Back)
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Response samples
- 202
- 400
- 401
- 403
- 404
- 500
{- "license": {
- "id": "9231fa9f-ff03-4030-91ff-e9d583e4f446",
- "name": "Sample License",
- "email_address": "user1@example.com",
- "arcserve_business_continuity_cloud_login_mail_address": "user2@example.com",
- "status": "Delete Order Under Review",
- "tenant_id": "c9a8c3e852f64840a67528d259880bad",
- "plan_id": "00713021-9aea-41da-9a88-87760c08fa72",
- "plan_name_ja": "100GB",
- "plan_name_en": "100GB",
- "plan_quantity": 2,
- "plan_quantity_before_change": 1,
- "offer_start_request_date": "2022-07-15",
- "offer_start_date": "2022-07-15",
- "plan_quantity_change_request_date": "2022-08-10",
- "plan_quantity_change_date": "2022-08-10",
- "deletion_date": null,
- "created_at": "2022-07-01T14:15:22Z",
- "updated_at": "2022-09-20T14:15:22Z",
- "orders": [
- {
- "order_id": "123456",
- "fulfillment_id": "123456789",
- "issued_at": "2022-07-14T14:15:22Z"
}, - {
- "order_id": "654321",
- "fulfillment_id": "987654321",
- "issued_at": "2022-08-09T14:15:22Z"
}
]
}
}
Show License
Show License
path Parameters
license_id required | string <uuid> License ID |
tenant_id required | string ^[0-9a-f]{32}$ Example: cab37c0a5c40450d9038463783b7d53e Tenant ID in gl1 region |
header Parameters
X-Auth-Token required | string Example: e1b37cb197d84e69af37264fc0f167a33 Authentication token generated by Keystone |
Responses
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Response samples
- 200
- 400
- 401
- 403
- 404
- 500
{- "license": {
- "id": "2f380d88-c58b-4bea-b611-fe4d1f3e1eae",
- "name": "Sample License",
- "email_address": "user1@example.com",
- "arcserve_business_continuity_cloud_login_mail_address": "user2@example.com",
- "status": "Active",
- "tenant_id": "c9a8c3e852f64840a67528d259880bad",
- "plan_id": "00713021-9aea-41da-9a88-87760c08fa72",
- "plan_name_ja": "100GB",
- "plan_name_en": "100GB",
- "plan_quantity": 2,
- "plan_quantity_before_change": 1,
- "offer_start_request_date": "2022-07-15",
- "offer_start_date": "2022-07-15",
- "plan_quantity_change_request_date": "2022-08-10",
- "plan_quantity_change_date": "2022-08-10",
- "deletion_date": null,
- "created_at": "2022-07-01T14:15:22Z",
- "updated_at": "2022-08-09T14:15:22Z",
- "orders": [
- {
- "order_id": "123456",
- "fulfillment_id": "123456789",
- "issued_at": "2022-07-14T14:15:22Z"
}, - {
- "order_id": "654321",
- "fulfillment_id": "987654321",
- "issued_at": "2022-08-09T14:15:22Z"
}
]
}
}