Skip to main content
PUT
/
organizations
/
admin
/
organizations
/
{org_id}
/
features
/
{feature_key}
/
{action}
Approve or deny a feature request
curl --request PUT \
  --url https://api.pcxpay.com/v1/organizations/admin/organizations/{org_id}/features/{feature_key}/{action} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "review_notes": "<string>"
}
'
{
  "status": "success",
  "message": "<string>",
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

org_id
string
required
feature_key
string
required
action
enum<string>
required
Available options:
approve,
deny

Body

application/json
review_notes
string

Response

Action applied

status
string
Example:

"success"

message
string
data
object