Issue a gateway grant

post

/apiplatform/management/v1/gateways/{gwId}/grants

Issue a grant to a user or group for the {gwId} gateway.

The user requesting this resource must be assigned the Gateway Manager role and must be issued the Manage Gateway grant for the specified gateway.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : CreateGrantRequest
Type: object
Show Source
Nested Schema : group
Type: object
Show Source
Nested Schema : user
Type: object
Show Source
Back to Top

Response

Supported Media Types

204 Response

The grants were created.

403 Response

Forbidden.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source

500 Response

Unexpected error.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source
Back to Top

Examples

The following example shows how to issue a grant to a gateway by submitting a POST request on the REST resource using cURL. For more information about cURL, see Use cURL

curl -i -X POST 
-H "Authorization: Bearer access_token"
-H "Content-Type:application/json"
-d @gw-grant.json
https://example.com/apiplatform/management/v1/gateways/{gwId}/grants

{gwId} is the unique Id for a gateway. To retrieve available gateway Ids, see Get gateways.

Example of Request Body

The following shows an example of the request body in JSON format, included with the request above in a file named gw-grant.json.

{
	"type": "ManageGatewayGrant",
	"user": {
		"id": "api-gateway-user2"
	}
}

Example of Response Headers

The following shows an example of the response headers.

HTTP/1.1 204 No Content
Server: Oracle-Traffic-Director/12.2.1.0.0
Date:  Thu, 16 Mar 2017 09:50:42 GMT
X-oracle-dms-ecid:  f102c33f-1c5b-4409-806d-03bf5706c492-00026f4e
X-oracle-dms-rid: 0:1
Via: 1.1 otd_opc
Proxy-agent: Oracle-Traffic-Director/12.2.1.0.0
Back to Top