Apphook status
This endpoint can be used to manage Apphook status.
Retrieves a collection of Apphook statuses and rudimentary information about them.
Retrieves a single status of a Apphook.
Creates an Apphook Status.
Updates an Apphook status.
Deletes an Apphook status.
POST https://api.bundeling.com/V2/apphook_status
Parameters
Body
| Name | Description | Type | Nillable | Required |
|---|
user_uuid | The unique identifier of the User that this status belongs to. | string | false | false |
apphook_uuid | The unique identifier of the Apphook that this status belongs to. | string | false | true |
status | The actual status. Accepted values: opened, done | string | false | true |
Example request
Headers
Body
{
"user_uuid": "62f24ee9c8f6d9b2e054dbe763cc341c",
"apphook_uuid": "eeb763c41c054dcc8f6d9362f24ee9b2",
"status": "done"
}Example response
{
"uuid": "eeb763c41c054dcc8f6d9362f24ee9b2",
"user_uuid": "62f24ee9c8f6d9b2e054dbe763cc341c",
"apphook_uuid": "cc8f6d9362f24ee9b2eeb763c41c054d",
"status": "done",
"creationdate": "2026-06-03T00:00:00+0200",
"lastupdate": "2026-06-03T00:00:00+0200"
}