Properties
| Name | Type | Description |
|---|---|---|
| application_id | object | |
| avatar | stringnull | |
| channel_id | object | |
| guild_id | object | |
| id | object | |
| name | string | |
| type | integer | |
| user | object | |
| token | stringnull | |
| url | stringnull |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GuildIncomingWebhookResponse",
"title": "GuildIncomingWebhookResponse",
"type": "object",
"properties": {
"application_id": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/SnowflakeType"
}
]
},
"avatar": {
"type": [
"string",
"null"
]
},
"channel_id": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/SnowflakeType"
}
]
},
"guild_id": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/SnowflakeType"
}
]
},
"id": {
"$ref": "#/components/schemas/SnowflakeType"
},
"name": {
"type": "string"
},
"type": {
"type": "integer",
"enum": [
1
],
"allOf": [
{
"$ref": "#/components/schemas/WebhookTypes"
}
],
"format": "int32"
},
"user": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/UserResponse"
}
]
},
"token": {
"type": [
"string",
"null"
]
},
"url": {
"type": [
"string",
"null"
],
"format": "uri"
}
},
"required": [
"id",
"name",
"type"
]
}