Create Device (only for reseller)
POST/devices
Create Device (only for reseller)
Request
- application/json
Body
required
package stringrequired
phone stringrequired
Responses
- 200
- 403
- 404
- 422
OK
Response Headers
X-Powered-By any
Content-Length any
ETag any
Date any
Connection any
Keep-Alive any
- application/json; charset=utf-8
- Schema
- Example (from schema)
- Example
Schema
status int32required
message stringrequired
data objectrequired
id stringrequired
server_id stringrequired
user_id stringrequired
phone stringrequired
status stringrequired
package_id stringrequired
secret_key stringrequired
updated_at stringrequired
created_at stringrequired
webhook_url stringnullablerequired
{
"status": 200,
"message": "OK",
"data": {
"id": "2041",
"server_id": "4",
"user_id": "4",
"phone": "6285603051725",
"status": "INACTIVE",
"package_id": "3",
"secret_key": "9slnw",
"updated_at": "2022-09-09T01:36:11.000Z",
"created_at": "2022-09-09T01:36:11.000Z",
"webhook_url": null
}
}
{
"status": 200,
"message": "OK",
"data": {
"id": "2041",
"server_id": "4",
"user_id": "4",
"phone": "6285603051725",
"status": "INACTIVE",
"package_id": "3",
"secret_key": "9slnw",
"updated_at": "2022-09-09T01:36:11.000Z",
"created_at": "2022-09-09T01:36:11.000Z",
"webhook_url": null
}
}
General Forbidden Error Response
- application/json
- Schema
- Example (from schema)
Schema
status integer
Forbidden
message string
HTTP Status Message
{
"status": 403,
"message": "Forbidden"
}
General Not Found Error Response
- application/json
- Schema
- Example (from schema)
Schema
status integer
Not Found
message string
HTTP Status Message
{
"status": 404,
"message": "Not Found"
}
General Validation Error Response
- application/json
- Schema
- Example (from schema)
Schema
status integer
HTTP Status Code
message string
HTTP Status Message
errors string[]
{
"status": 422,
"message": "Validation Error ",
"errors": [
"string"
]
}
Loading...