Sympla

Sympla is Brazil's leading self-service ticketing and event management platform.

Integrate the Sympla API with the Go API

Setup the Sympla API trigger to run a workflow which integrates with the Go API. Pipedream's integration platform allows you to integrate Sympla and Go remarkably fast. Free for developers.

Run Go Code with Go API on New Attendee from Sympla API
Sympla + Go
 
Try it
Run Go Code with Go API on New Event from Sympla API
Sympla + Go
 
Try it
Run Go Code with Go API on New Order from Sympla API
Sympla + Go
 
Try it
New Attendee from the Sympla API

Emit new event for each new attendee in an event.

 
Try it
New Event from the Sympla API

Emit new event for each new event created in Sympla.

 
Try it
New Order from the Sympla API

Emit new event for each new order in an event.

 
Try it
Run Go Code with the Go API

Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.

 
Try it

Overview of Sympla

The Sympla API allows for the seamless integration of event management capabilities into various applications or services. With this API, you can automate tasks like attendee registration, event creation, ticket sales tracking, and participant communication. It's particularly useful for event organizers looking to streamline operations and enhance the attendee experience through automation.

Connect Sympla

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    sympla: {
      type: "app",
      app: "sympla",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.sympla.com.br/public/v3/events`,
      headers: {
        "s_token": `${this.sympla.$auth.token}`,
      },
    })
  },
})

Overview of Go

You can execute custom Go scripts on-demand or in response to various triggers and integrate with thousands of apps supported by Pipedream. Writing with Go on Pipedream enables backend operations like data processing, automation, or invoking other APIs, all within the Pipedream ecosystem. By leveraging Go's performance and efficiency, you can design powerful and fast workflows to streamline complex tasks.

Connect Go

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main

import (
	"fmt"

	pd "github.com/PipedreamHQ/pipedream-go"
)

func main() {
	// Access previous step data using pd.Steps
	fmt.Println(pd.Steps)

	// Export data using pd.Export
	data := make(map[string]interface{})
	data["name"] = "Luke"
	pd.Export("data", data)
}