copyfactory.io
  • Getting started
    • Overview
      • Authentication
      • Rate limiting
      • Errors
  • API
    • Playbooks
      • The playbook object
      • List playbooks
    • Sequences
      • The sequence object
      • List sequences
    • Contacts
      • The contact object
      • Create contact
      • Get contact
      • Search contacts
    • Profiles
      • The profile object
      • Get a profile
      • List all profiles
    • Premises
      • The premise object
      • Get a premise
      • List all premises
    • Generations
      • The generations object
      • Generate text
  • Text Generation Tutorials
    • How to generate text
  • App
    • Website
    • Login
Powered by GitBook
On this page
  1. API
  2. Sequences

List sequences

List sequences

GET https://app.copyfactory.io/api/v2/sequences/list/

List sequences of your Copyfactory account.

Query Parameters

Name
Type
Description

profile_id

int

Filter by profile ID

Headers

Name
Type
Description

Authorization*

String

Copyfactory API key

{
	'data': [{
		'id': 1,
		'is_request': False,
		'profile_name': 'CF',
		'sequence_name': 'Seq',
		'create_date': '2022-06-13T10:12:24.885Z'
	},]
}
curl --location --request GET 'https://app.copyfactory.io/api/v2/sequences/list/' \
--header 'Authorization: API-KEY' \
--header 'Content-Type: application/json'
import requests
import json

url = f"https://app.copyfactory.io/api/v2/sequences/list/"

headers = {
  'Authorization': 'API-KEY',
  'Content-Type': 'application/json'
}

response = requests.request("GET", url, headers=headers)

print(response.text)
PreviousThe sequence objectNextContacts

Last updated 2 years ago