title | summary |
---|---|
Sandbox GTAP |
`/api/mt/gtap` endpoints, for CRUD operations and the like on GTAPs (Group Table Access Policies).
|
/api/mt/gtap
endpoints, for CRUD operations and the like on GTAPs (Group Table Access Policies).
Delete a GTAP entry.
id
value must be an integer greater than zero.
Fetch a list of all GTAPs currently in use, or a single GTAP if both group_id
and table_id
are provided.
-
group_id
nullable value must be an integer greater than zero. -
table_id
nullable value must be an integer greater than zero.
Fetch GTAP by id
.
id
value must be an integer greater than zero.
Create a new GTAP.
-
table_id
value must be an integer greater than zero. -
card_id
nullable value must be an integer greater than zero. -
group_id
value must be an integer greater than zero. -
attribute_remappings
Validate a sandbox which may not have yet been saved. This runs the same validation that is performed when the sandbox is saved, but doesn't actually save the sandbox.
-
table_id
value must be an integer greater than zero. -
card_id
nullable value must be an integer greater than zero.
Update a GTAP entry. The only things you're allowed to update for a GTAP are the Card being used (card_id
) or the
paramter mappings; changing table_id
or group_id
would effectively be deleting this entry and creating a new
one. If that's what you want to do, do so explicity with appropriate calls to the DELETE
and POST
endpoints.
-
id
value must be an integer greater than zero. -
card_id
nullable value must be an integer greater than zero.