Get Application Request

Get Application Request

Return an application request that match the searching param id for an organization. The id of the organization is fetched from CSP token.

Request
URI
GET
https://{api_host}/v1/catalogs/{catalog_id}/application-requests/{application_request_id}
COPY
Path Parameters
catalog_id
Required

A string as the identifier of a catalog

application_request_id
Required

A string as identifier of an application request


Authentication
This operation uses the following authentication methods.
Responses
200

Details of the application request found

Returns CatalogApplicationRequest of type(s) application/json
"CatalogApplicationRequest Object"
string
id
Required

Identifier of the request

string
name
Optional

Name of the request given by the user

string
description
Optional

Description of the request given by the user

array of object
applications
Required
Constraints: minItems: 1

It contains information about an application in a catalog

string
user
Required

Name of the user

string
request_type
Required

Type of the request. The possible values are add or remove

string
status
Required

The status of the request based on the status of all the applications in the same request: PENDING, IN_PROGRESS, COMPLETED, FAILED

string As date-time As date-time
created_at
Optional

The date-time which the request was created

string As date-time As date-time
updated_at
Optional

The date-time which the request was updated

object
_links
Optional

Section to include hyperlinks based on Hypertext Application Language


400

An error related to the request

Returns ConstraintsViolationsError of type(s) application/problem+json
This response body class contains all of the following: InlineConstraintsViolationsError0
"ConstraintsViolationsError Object"
array of object
violations
Required

It represents a constraints violation error


403

The requesting user is not authorized to get the request

Returns Error403 of type(s) application/problem+json
This response body class contains all of the following: InlineError4030
"Error403 Object"

404

Application request not found

Returns Error404 of type(s) application/problem+json
This response body class contains all of the following: InlineError4040
"Error404 Object"

500

An internal server error object

Returns Error500 of type(s) application/problem+json
This response body class contains all of the following: InlineError5000
"Error500 Object"

503

The server is temporarily unavailable

Returns Error503 of type(s) application/problem+json
This response body class contains all of the following: InlineError5030
"Error503 Object"

Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/v1/catalogs/{catalog_id}/application-requests/{application_request_id}