Update Manual Gateway
PUT/v2/gateways/manual
This endpoint allows you update the manual gateway.
Request
- application/json
Body
- Update Manual Gateway Request
oneOf
data object
enabled boolean
Specifies whether the gateway is enabled or disabled. Set true
to enable the gateway and false
to disable the gateway. Default is false
.
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
data object
enabled boolean
Specifies whether the gateway is enabled or disabled. Set true
to enable the gateway and false
to disable the gateway. Default is false
.
name string
Specifies the nme of the gateway.
slug string
Specifies the slug of the gateway.
type string
Specifies the type of object being returned.
{
"data": {
"enabled": true,
"name": "Manual",
"slug": "manual",
"type": "gateway"
}
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
detail string
status string
title string
[
null
]
{
"errors": {
"status": 401,
"title": "Unauthorized"
}
}
Loading...