Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Service

API

Method

Data Model

Workflow

Group

multitenant

/product/package/acl/api

GET

Products

N/A

Product

Description

Get the ACL of a specific api in the product package

...

Expand
titleValid Response

Code Block
languagejs
{
	"result": true,
	"data": {
		"package": "TROD_BASIC",
		"product": "TROD",
		"acl": [{
			"service": "uracmicro1",
			"version": "31.2",
			"group": "My account guestcalendar",
			"method": "getpost",
			"api": "/passwordv1/forgotdomain",
			"envs": {
				"dev": true
			},
			"access": {
				"dev": falsetrue
			},
			"restriction": {
				"dev": true
			}
		}, {
			"service": "uracmicro1",
			"version": "31.2",
			"group": "My account guestcalendar",
			"method": "getpost",
			"api": "/emailTokenv1/schedules/:scheduleId",
			"envs": {
				"dev": true
			},
			"access": {
				"dev": truefalse
			},
			"restriction": {
				"dev": true
			}
		}, {
			"service": "uracmicro1",
			"version": "31.2",
			"group": "My account guestcalendar",
			"method": "getpost",
			"api": "/validate/changeEmailv1/schedules/:scheduleId/approvals",
			"envs": {
				"dev": true
			},
			"access": {
				"dev": truefalse
			},
			"restriction": {
				"dev": true
			}
		}],
		"aclTypeByEnv": {
			"dev": "granular"
		}
	}
}

Invalid Response

Code Block
{
    "result":false,
    "errors":{
        "codes":[460],
        "details":[
            {
                "code":461,
                "message":"Unable to find package"
            }
        ]
    }
}

...