Application Registrations
Update Registration
Updates the status of a particular application registration to an API. Approved application registrations will allow API traffic to the corresponding API. Revoked, rejected, or pending will not allow API traffic.
patch/v3/portals/{portalId}/applications/{applicationId}/registrations/{registrationId}
Request body
Example request
{
"status": "rejected"
}Response
Details about the application registration being updated.
Example response
{
"id": "c300cc33-2d33-4754-b086-a98e0fcd36fb",
"status": "approved",
"application": {
"id": "c15e2460-ba40-431d-9df0-4957fcff7cda",
"name": "App 1"
},
"api": {
"id": "86f637b7-cd95-478b-9b02-d770618f641c",
"name": "Great Stuff",
"version": "v1",
"entity_type": "api"
},
"created_at": "2022-12-22T20:13:07.305Z",
"updated_at": "2022-12-22T20:13:36.710Z"
}