1. Packages
  2. Cisco Meraki Provider
  3. API Docs
  4. organizations
  5. getWebhooksCallbacksStatuses
Cisco Meraki v0.4.1 published on Saturday, Mar 15, 2025 by Pulumi

meraki.organizations.getWebhooksCallbacksStatuses

Explore with Pulumi AI

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";

const example = meraki.organizations.getWebhooksCallbacksStatuses({
    callbackId: "string",
    organizationId: "string",
});
export const merakiOrganizationsWebhooksCallbacksStatusesExample = example.then(example => example.item);
Copy
import pulumi
import pulumi_meraki as meraki

example = meraki.organizations.get_webhooks_callbacks_statuses(callback_id="string",
    organization_id="string")
pulumi.export("merakiOrganizationsWebhooksCallbacksStatusesExample", example.item)
Copy
package main

import (
	"github.com/pulumi/pulumi-meraki/sdk/go/meraki/organizations"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := organizations.GetWebhooksCallbacksStatuses(ctx, &organizations.GetWebhooksCallbacksStatusesArgs{
			CallbackId:     "string",
			OrganizationId: "string",
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("merakiOrganizationsWebhooksCallbacksStatusesExample", example.Item)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Meraki = Pulumi.Meraki;

return await Deployment.RunAsync(() => 
{
    var example = Meraki.Organizations.GetWebhooksCallbacksStatuses.Invoke(new()
    {
        CallbackId = "string",
        OrganizationId = "string",
    });

    return new Dictionary<string, object?>
    {
        ["merakiOrganizationsWebhooksCallbacksStatusesExample"] = example.Apply(getWebhooksCallbacksStatusesResult => getWebhooksCallbacksStatusesResult.Item),
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.organizations.OrganizationsFunctions;
import com.pulumi.meraki.organizations.inputs.GetWebhooksCallbacksStatusesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var example = OrganizationsFunctions.getWebhooksCallbacksStatuses(GetWebhooksCallbacksStatusesArgs.builder()
            .callbackId("string")
            .organizationId("string")
            .build());

        ctx.export("merakiOrganizationsWebhooksCallbacksStatusesExample", example.applyValue(getWebhooksCallbacksStatusesResult -> getWebhooksCallbacksStatusesResult.item()));
    }
}
Copy
variables:
  example:
    fn::invoke:
      function: meraki:organizations:getWebhooksCallbacksStatuses
      arguments:
        callbackId: string
        organizationId: string
outputs:
  merakiOrganizationsWebhooksCallbacksStatusesExample: ${example.item}
Copy

Using getWebhooksCallbacksStatuses

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getWebhooksCallbacksStatuses(args: GetWebhooksCallbacksStatusesArgs, opts?: InvokeOptions): Promise<GetWebhooksCallbacksStatusesResult>
function getWebhooksCallbacksStatusesOutput(args: GetWebhooksCallbacksStatusesOutputArgs, opts?: InvokeOptions): Output<GetWebhooksCallbacksStatusesResult>
Copy
def get_webhooks_callbacks_statuses(callback_id: Optional[str] = None,
                                    organization_id: Optional[str] = None,
                                    opts: Optional[InvokeOptions] = None) -> GetWebhooksCallbacksStatusesResult
def get_webhooks_callbacks_statuses_output(callback_id: Optional[pulumi.Input[str]] = None,
                                    organization_id: Optional[pulumi.Input[str]] = None,
                                    opts: Optional[InvokeOptions] = None) -> Output[GetWebhooksCallbacksStatusesResult]
Copy
func GetWebhooksCallbacksStatuses(ctx *Context, args *GetWebhooksCallbacksStatusesArgs, opts ...InvokeOption) (*GetWebhooksCallbacksStatusesResult, error)
func GetWebhooksCallbacksStatusesOutput(ctx *Context, args *GetWebhooksCallbacksStatusesOutputArgs, opts ...InvokeOption) GetWebhooksCallbacksStatusesResultOutput
Copy

> Note: This function is named GetWebhooksCallbacksStatuses in the Go SDK.

public static class GetWebhooksCallbacksStatuses 
{
    public static Task<GetWebhooksCallbacksStatusesResult> InvokeAsync(GetWebhooksCallbacksStatusesArgs args, InvokeOptions? opts = null)
    public static Output<GetWebhooksCallbacksStatusesResult> Invoke(GetWebhooksCallbacksStatusesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetWebhooksCallbacksStatusesResult> getWebhooksCallbacksStatuses(GetWebhooksCallbacksStatusesArgs args, InvokeOptions options)
public static Output<GetWebhooksCallbacksStatusesResult> getWebhooksCallbacksStatuses(GetWebhooksCallbacksStatusesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: meraki:organizations/getWebhooksCallbacksStatuses:getWebhooksCallbacksStatuses
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CallbackId This property is required. string
callbackId path parameter. Callback ID
OrganizationId This property is required. string
organizationId path parameter. Organization ID
CallbackId This property is required. string
callbackId path parameter. Callback ID
OrganizationId This property is required. string
organizationId path parameter. Organization ID
callbackId This property is required. String
callbackId path parameter. Callback ID
organizationId This property is required. String
organizationId path parameter. Organization ID
callbackId This property is required. string
callbackId path parameter. Callback ID
organizationId This property is required. string
organizationId path parameter. Organization ID
callback_id This property is required. str
callbackId path parameter. Callback ID
organization_id This property is required. str
organizationId path parameter. Organization ID
callbackId This property is required. String
callbackId path parameter. Callback ID
organizationId This property is required. String
organizationId path parameter. Organization ID

getWebhooksCallbacksStatuses Result

The following output properties are available:

CallbackId string
callbackId path parameter. Callback ID
Id string
The provider-assigned unique ID for this managed resource.
Item GetWebhooksCallbacksStatusesItem
OrganizationId string
organizationId path parameter. Organization ID
CallbackId string
callbackId path parameter. Callback ID
Id string
The provider-assigned unique ID for this managed resource.
Item GetWebhooksCallbacksStatusesItem
OrganizationId string
organizationId path parameter. Organization ID
callbackId String
callbackId path parameter. Callback ID
id String
The provider-assigned unique ID for this managed resource.
item GetWebhooksCallbacksStatusesItem
organizationId String
organizationId path parameter. Organization ID
callbackId string
callbackId path parameter. Callback ID
id string
The provider-assigned unique ID for this managed resource.
item GetWebhooksCallbacksStatusesItem
organizationId string
organizationId path parameter. Organization ID
callback_id str
callbackId path parameter. Callback ID
id str
The provider-assigned unique ID for this managed resource.
item GetWebhooksCallbacksStatusesItem
organization_id str
organizationId path parameter. Organization ID
callbackId String
callbackId path parameter. Callback ID
id String
The provider-assigned unique ID for this managed resource.
item Property Map
organizationId String
organizationId path parameter. Organization ID

Supporting Types

GetWebhooksCallbacksStatusesItem

CallbackId This property is required. string
The ID of the callback
CreatedBy This property is required. GetWebhooksCallbacksStatusesItemCreatedBy
Information around who initiated the callback
Errors This property is required. List<string>
The errors returned by the callback
Status This property is required. string
The status of the callback
Webhook This property is required. GetWebhooksCallbacksStatusesItemWebhook
The webhook receiver used by the callback to send results
CallbackId This property is required. string
The ID of the callback
CreatedBy This property is required. GetWebhooksCallbacksStatusesItemCreatedBy
Information around who initiated the callback
Errors This property is required. []string
The errors returned by the callback
Status This property is required. string
The status of the callback
Webhook This property is required. GetWebhooksCallbacksStatusesItemWebhook
The webhook receiver used by the callback to send results
callbackId This property is required. String
The ID of the callback
createdBy This property is required. GetWebhooksCallbacksStatusesItemCreatedBy
Information around who initiated the callback
errors This property is required. List<String>
The errors returned by the callback
status This property is required. String
The status of the callback
webhook This property is required. GetWebhooksCallbacksStatusesItemWebhook
The webhook receiver used by the callback to send results
callbackId This property is required. string
The ID of the callback
createdBy This property is required. GetWebhooksCallbacksStatusesItemCreatedBy
Information around who initiated the callback
errors This property is required. string[]
The errors returned by the callback
status This property is required. string
The status of the callback
webhook This property is required. GetWebhooksCallbacksStatusesItemWebhook
The webhook receiver used by the callback to send results
callback_id This property is required. str
The ID of the callback
created_by This property is required. GetWebhooksCallbacksStatusesItemCreatedBy
Information around who initiated the callback
errors This property is required. Sequence[str]
The errors returned by the callback
status This property is required. str
The status of the callback
webhook This property is required. GetWebhooksCallbacksStatusesItemWebhook
The webhook receiver used by the callback to send results
callbackId This property is required. String
The ID of the callback
createdBy This property is required. Property Map
Information around who initiated the callback
errors This property is required. List<String>
The errors returned by the callback
status This property is required. String
The status of the callback
webhook This property is required. Property Map
The webhook receiver used by the callback to send results

GetWebhooksCallbacksStatusesItemCreatedBy

AdminId This property is required. string
The ID of the user who initiated the callback
AdminId This property is required. string
The ID of the user who initiated the callback
adminId This property is required. String
The ID of the user who initiated the callback
adminId This property is required. string
The ID of the user who initiated the callback
admin_id This property is required. str
The ID of the user who initiated the callback
adminId This property is required. String
The ID of the user who initiated the callback

GetWebhooksCallbacksStatusesItemWebhook

HttpServer This property is required. GetWebhooksCallbacksStatusesItemWebhookHttpServer
The webhook receiver used for the callback webhook
PayloadTemplate This property is required. GetWebhooksCallbacksStatusesItemWebhookPayloadTemplate
The payload template of the webhook used for the callback
SentAt This property is required. string
The timestamp the callback was sent to the webhook receiver
Url This property is required. string
The webhook receiver URL where the callback will be sent
HttpServer This property is required. GetWebhooksCallbacksStatusesItemWebhookHttpServer
The webhook receiver used for the callback webhook
PayloadTemplate This property is required. GetWebhooksCallbacksStatusesItemWebhookPayloadTemplate
The payload template of the webhook used for the callback
SentAt This property is required. string
The timestamp the callback was sent to the webhook receiver
Url This property is required. string
The webhook receiver URL where the callback will be sent
httpServer This property is required. GetWebhooksCallbacksStatusesItemWebhookHttpServer
The webhook receiver used for the callback webhook
payloadTemplate This property is required. GetWebhooksCallbacksStatusesItemWebhookPayloadTemplate
The payload template of the webhook used for the callback
sentAt This property is required. String
The timestamp the callback was sent to the webhook receiver
url This property is required. String
The webhook receiver URL where the callback will be sent
httpServer This property is required. GetWebhooksCallbacksStatusesItemWebhookHttpServer
The webhook receiver used for the callback webhook
payloadTemplate This property is required. GetWebhooksCallbacksStatusesItemWebhookPayloadTemplate
The payload template of the webhook used for the callback
sentAt This property is required. string
The timestamp the callback was sent to the webhook receiver
url This property is required. string
The webhook receiver URL where the callback will be sent
http_server This property is required. GetWebhooksCallbacksStatusesItemWebhookHttpServer
The webhook receiver used for the callback webhook
payload_template This property is required. GetWebhooksCallbacksStatusesItemWebhookPayloadTemplate
The payload template of the webhook used for the callback
sent_at This property is required. str
The timestamp the callback was sent to the webhook receiver
url This property is required. str
The webhook receiver URL where the callback will be sent
httpServer This property is required. Property Map
The webhook receiver used for the callback webhook
payloadTemplate This property is required. Property Map
The payload template of the webhook used for the callback
sentAt This property is required. String
The timestamp the callback was sent to the webhook receiver
url This property is required. String
The webhook receiver URL where the callback will be sent

GetWebhooksCallbacksStatusesItemWebhookHttpServer

Id This property is required. string
The webhook receiver ID that will receive information
Id This property is required. string
The webhook receiver ID that will receive information
id This property is required. String
The webhook receiver ID that will receive information
id This property is required. string
The webhook receiver ID that will receive information
id This property is required. str
The webhook receiver ID that will receive information
id This property is required. String
The webhook receiver ID that will receive information

GetWebhooksCallbacksStatusesItemWebhookPayloadTemplate

Id This property is required. string
The ID of the payload template
Id This property is required. string
The ID of the payload template
id This property is required. String
The ID of the payload template
id This property is required. string
The ID of the payload template
id This property is required. str
The ID of the payload template
id This property is required. String
The ID of the payload template

Package Details

Repository
meraki pulumi/pulumi-meraki
License
Apache-2.0
Notes
This Pulumi package is based on the meraki Terraform Provider.