curl --request GET \
--url https://api.getfernand.com/organization \
--header 'X-API-Key: <api-key>'{
"name": "PiedPiper Inc.",
"slug": "piedpier",
"from_name": "${agent_name} from ${organization_name}",
"trial_ends_at": "2024-12-31T23:59:59Z",
"trial_ends_at_ts": 1735689599000,
"is_premium": true,
"integrations": [
"LINEAR",
"SLACK"
],
"created": "2024-01-01T00:00:00Z",
"created_ts": 1704067200000,
"is_custom_data_enabled": false,
"is_ai_enabled": true,
"is_ai_chat_enabled": true,
"is_ai_articles_enabled": false,
"is_ai_messages_enabled": false,
"line1": "5230 Newell Road",
"line2": "<string>",
"zipcode": 94303,
"city": "Palo Alto",
"state": "California",
"country": "US",
"company_vat": "<string>",
"billing_email": "billing@piedpiper.com",
"notification_email": "notifications@piedpiper.com",
"onboarding": {
"email": "done",
"channel": "done",
"stripe": "ignored"
},
"renew_date": "2024-12-01T00:00:00Z",
"renew_date_ts": 1733011200000,
"cancels_at": "2024-12-31T23:59:59Z",
"cancels_at_ts": 1735689599000,
"card_expiry": "2025-12-01T00:00:00Z",
"card_expiry_ts": 1764547200000,
"card_brand": "Visa",
"last4": "4242",
"hours": {
"monday": [
{
"open": "09:00",
"close": "17:00"
}
],
"tuesday": [
{
"open": "09:00",
"close": "17:00"
}
]
}
}curl --request GET \
--url https://api.getfernand.com/organization \
--header 'X-API-Key: <api-key>'{
"name": "PiedPiper Inc.",
"slug": "piedpier",
"from_name": "${agent_name} from ${organization_name}",
"trial_ends_at": "2024-12-31T23:59:59Z",
"trial_ends_at_ts": 1735689599000,
"is_premium": true,
"integrations": [
"LINEAR",
"SLACK"
],
"created": "2024-01-01T00:00:00Z",
"created_ts": 1704067200000,
"is_custom_data_enabled": false,
"is_ai_enabled": true,
"is_ai_chat_enabled": true,
"is_ai_articles_enabled": false,
"is_ai_messages_enabled": false,
"line1": "5230 Newell Road",
"line2": "<string>",
"zipcode": 94303,
"city": "Palo Alto",
"state": "California",
"country": "US",
"company_vat": "<string>",
"billing_email": "billing@piedpiper.com",
"notification_email": "notifications@piedpiper.com",
"onboarding": {
"email": "done",
"channel": "done",
"stripe": "ignored"
},
"renew_date": "2024-12-01T00:00:00Z",
"renew_date_ts": 1733011200000,
"cancels_at": "2024-12-31T23:59:59Z",
"cancels_at_ts": 1735689599000,
"card_expiry": "2025-12-01T00:00:00Z",
"card_expiry_ts": 1764547200000,
"card_brand": "Visa",
"last4": "4242",
"hours": {
"monday": [
{
"open": "09:00",
"close": "17:00"
}
],
"tuesday": [
{
"open": "09:00",
"close": "17:00"
}
]
}
}Organization details retrieved successfully.
Name of the organization
250"PiedPiper Inc."
URL-friendly slug for the organization
250"piedpier"
Template for the "From" name in emails. Supports variables like ${agent_name}, ${organization_name}, ${channel_email}
100"${agent_name} from ${organization_name}"
Timestamp when the trial period ends (UTC)
"2024-12-31T23:59:59Z"
Unix timestamp in milliseconds when the trial period ends
1735689599000
Whether the organization has an active paid subscription
true
List of enabled integrations (e.g., LINEAR, GITHUB, SLACK)
["LINEAR", "SLACK"]Timestamp when the organization was created (UTC)
"2024-01-01T00:00:00Z"
Unix timestamp in milliseconds when the organization was created
1704067200000
Whether the custom data panel is enabled and properly configured
false
Whether AI features are enabled.
true
Whether AI chat feature is enabled
true
Whether AI articles feature is enabled
false
Whether AI messages feature is enabled
false
First line of the organization's address
250"5230 Newell Road"
Second line of the organization's address (suite, building, etc.)
250Postal/ZIP code
2594303
City name
250"Palo Alto"
State or province
250"California"
ISO 3166-1 alpha-2 country code
2"US"
VAT/Tax identification number
250Email address for billing notifications
"billing@piedpiper.com"
Email address for system notifications
"notifications@piedpiper.com"
Onboarding progress tracking with steps (email, channel, stripe, invite, snippet, rule, cheatsheet, knowledge) and their states (done, ignored)
{
"email": "done",
"channel": "done",
"stripe": "ignored"
}Next subscription renewal date (UTC)
"2024-12-01T00:00:00Z"
Unix timestamp in milliseconds for next subscription renewal
1733011200000
Timestamp when the subscription will be canceled (UTC)
"2024-12-31T23:59:59Z"
Unix timestamp in milliseconds when the subscription will be canceled
1735689599000
Payment card expiration date (UTC)
"2025-12-01T00:00:00Z"
Unix timestamp in milliseconds for payment card expiration
1764547200000
Payment card brand (Visa, Mastercard, etc.)
50"Visa"
Last 4 digits of the payment card
4"4242"
Business hours configuration with days and opening/closing times
{
"monday": [{ "open": "09:00", "close": "17:00" }],
"tuesday": [{ "open": "09:00", "close": "17:00" }]
}Was this page helpful?