Skip to main content
GET
/
api
/
businesses
/
{business_id}
/
integrations
List integrations
curl --request GET \
  --url https://api.mymarky.ai/api/businesses/{business_id}/integrations \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "business_id": "<string>",
    "platform": "<string>",
    "status": "<string>",
    "username": "<string>",
    "profile_picture": "<string>",
    "selected_page_id": "<string>",
    "selected_page_name": "<string>",
    "invalid_reason": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.mymarky.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

business_id
string
required

Response

Successful Response

id
string
required

Integration ID

business_id
string
required

Business this integration belongs to

platform
string
required

Platform type (facebook, instagram, twitter, etc.)

status
string
required

Integration status: VALID, INVALID, etc.

username
string | null

Connected account username

profile_picture
string | null

Profile picture URL, if available

selected_page_id
string | null

Selected page/board/channel ID (FB Page, Pinterest board, YouTube channel, etc.)

selected_page_name
string | null

Selected page/board/channel display name

invalid_reason
string | null

Why the integration is invalid (if status != VALID)