Apollo supports the OAuth 2.0 authorization flow to build Apollo integrations. By using this flow, your app’s users can enter their Apollo account credentials and grant you permission to retrieve data via Apollo's APIs.
Preview the Authorization Flow for Your Users
Apollo supports the OAuth 2.0 authorization code grant type. Your app’s users will follow these 3 steps when using their Apollo credentials to authenticate:
The user enters their Apollo credentials in your app. A new browser window opens.
The user can see your app name and logo, as well as the permissions you are requesting they authorize. After reviewing the requested permissions, the user grants your app access.
The user is redirected back to your app.
Unseen to your users, the redirect URL you provide to Apollo includes an authorization code in the query string. Your app sends a request to the OAuth 2.0 server to exchange the authorization code for an access token.
Before You Start Building
You must have the appropriate permissions in your team’s Apollo account to implement this authorization flow. If you are an admin, you can check your permissions by launching Apollo and clicking Settings > Users and teams > Permission profiles. Then, click the permission profile that you have been assigned and ensure that the Can authorize third-party apps/integrations via OAuth box within Integrations has been checked.
If you're not an Apollo admin for your team's account, you should contact an Apollo admin to request this permission.
🚧
Unauthorized Users
To authorize your integration via OAuth, an Apollo end user must the necessary permissions. For teams on an Apollo plan that enables custom permission profiles, the user needs to have the Can authorize third-party apps/integrations via OAuth permission enabled in Apollo. For teams on a plan that doesn't include custom permissions, the user must be assigned either the Admin or Billing and Seat Manager permission profile.
If a user without this permission attempts to authorize, they will be redirected according to the OAuth redirect URL you will set later in this process. The following error code will be appended to the redirect URL:
Recommended handling: You can choose to display a user-friendly message, such as a pop-up or other visual element, explaining the required permissions. If no message is configured, the user will only see the error message within the URL.
Also, this method of authorization supports only the API endpoints listed in Apollo’s public API documentation. Ensure that the endpoints you need for your use case are available before implementing OAuth.
If you have the appropriate permissions and have confirmed the availability of endpoints, proceed to step 1.
Build OAuth Authorization Flow
Step 1: Register Your App With Apollo
To set up an OAuth flow, you need to provide Apollo with details about the purpose of your organization using the flow. Once registration is approved, you can use the Apollo playground to test the OAuth flow before attempting to implement it.
Click OAuth registration, then enter the following information. When your users authenticate with an Apollo account, they will see the app name, app logo, and scopes you enter here.
App Name: The name of your app or product.
App Logo: Upload the logo for your app.
OAuth Redirect URL: The URL that the user will be redirected to after they authorize your app for the requested scopes. This URL must use https. To make multiple URLs available for use, add the URLs with each URL separated by a comma. Multiple redirect URLs enables you to implement different OAuth flows and redirect users based on the needs of each flow, such as flows for different types of users or flows for different areas of your product. You can add up to 4 redirect URLs.
Scopes: Set the scopes, or permissions, for your app. Each scope provides access to specific Apollo API endpoints. Only add scopes that are necessary for your app’s functionality. By default, Apollo adds read_user_profile, which provides basic user info, and app_scopes for all selected scopes. To view all available scopes, review this spreadsheet.
🚧
Locked In
In the future, if you edit these scopes, you need to repeat this entire authorization flow to set up OAuth again.
Click Submit.
Copy the client ID and secret to use in the next steps.
The client ID is a public identifier for your app and is used to identify your app during the OAuth flow. It appears on the OAuth integration page of the Apollo developer portal.
The client secret is a confidential key used to authenticate your app. It secures communication between your app and Apollo’s OAuth server. The only time the secret is displayed is when it is generated. Store it in a secure location as it will not be shown again.
Once your app is registered with Apollo, the playground becomes available in the developer portal. The playground enables you to quickly test the OAuth flow before you attempt to implement it in your app.
To test the OAuth flow:
Click OAuth Integration > Playground.
Enter a redirect URL, then click Get authorization code. Copy this code to use in the next step.
Paste the authorization code from the previous playground step and the client secret that you generated when registering your app. Then, click Get access token. Copy the access token to use in the next step.
Paste the access token from the previous playground step. Then, click Fetch data.
If you're successful in retrieving data, proceed to building the OAuth flow in your app.
Step 2: Build Authorization Code Flow
With your client ID and secret in hand from step 1, you’re ready to build the authorization code flow. When sending users to Apollo’s OAuth 2.0 server, the authorization URL identifies your app and defines the resources (scopes) it's requesting to access on behalf of users.
The following parameters can be used to build your authorization URL:
Parameter
Required
Description
Example
client_id
yes
The client ID identifies your app. The client ID was generated in
After a user authorizes your app for the requested scopes, they are
redirected to this URL. This should be the same as 1 of the OAuth
Redirect URLs you entered in
To request specific permissions, you should include the scope
parameter in your authorization request. If this parameter is not
defined, the scopes you selected in
Each scope you add needs to be separated by URL-encoded spaces.
If you’re passing the scope parameter in the URL and need
read_user_profile access, ensure you include it in the
scope parameter.
contacts_search%20person_read
state
no
A unique string value that you can use to maintain the user's state
when they are redirected back to your app. It ensures the response
matches the initial request by including and verifying the state
value during the redirection process.
WeHH_yy2irpl8UYAvv-my
With your parameters in mind, call the following endpoint:
This directs users to the Apollo log-in options. After the user submits valid Apollo log-in credentials, they can review the permissions you are requesting
If they authorize access, you receive an authorization code from Apollo, and the user is redirected to the redirect URL you provided to Apollo.
Step 3: Exchange Authorization Codes for Access Tokens
With the authorization code from step 2, you can obtain the access token and refresh token that will be used for subsequent requests to the Apollo API.
To retrieve access tokens, call the following endpoint using the following required parameters:
POST https://app.apollo.io/api/v1/oauth/token
Parameter
Description
Example
grant_type
This must be authorization_code.
authorization_code
code
The authorization code received from the OAuth 2.0 server in
The access token expires after 30 days. The expires_in field of the response shows the equivalent of 30 days in seconds.
Be sure to understand how to use the refresh_token to refresh access tokens when building your authorization flow.
Step 4: Use Access Tokens
Once the authorization code flow is completed, use the access tokens received in step 3 to make requests for your app on behalf of your users. To do this, provide the access token as a bearer token in the authorization HTTP header.
The following example shows how to format the header in Postman to call the Create a Task endpoint. Review the API reference docs to learn how to use other Apollo API functionality.
Step 5 (Ongoing): Refresh Access Tokens
Access tokens expire after 30 days. Your app can exchange the received refresh token for a new access token and refresh token by calling the following endpoint using the following parameters:
POST https://app.apollo.io/api/v1/oauth/token
Parameter
Description
Example
grant_type
This must be refresh_token.
refresh_token
refresh_token
The refresh token received when the user authorized your app in
To reduce the scopes associated with an existing access token, you
should include the desired scopes in the request to generate new
access and refresh tokens.
However, the scope specified in this request must be included in
the scopes you originally defined in
The access token should be used to make calls on behalf of the user. When the access token expires, follow these same steps again to retrieve a new one.
📘
Revoked Tokens
Once you use the refresh token to generate a new access and refresh token, the existing tokens are automatically revoked and are no longer valid.
Get User Profile Info
If you need to retrieve a user’s basic profile info to determine who owns an access token, call the following endpoint and provide the access token as a bearer token in the authorization HTTP header:
GET https://app.apollo.io/api/v1/users/api_profile
","html_footer_meta":"","html_hidelinks":false,"showVersion":false,"hideTableOfContents":false,"nextStepsLabel":"","promos":[{"extras":{"type":"search","buttonPrimary":"get-started","buttonSecondary":"reference"},"title":"Developer Hub","text":"Welcome! Here, you'll find comprehensive guides and documentation to help you get started with Apollo's API quickly, along with support if you get stuck. Let's jump right in!","_id":"66689305be97fb0010fdfc28"}],"ai_dropdown":"disabled","ai_options":{"chatgpt":"enabled","claude":"enabled","clipboard":"enabled","copilot":"enabled","view_as_markdown":"enabled"},"showPageIcons":true,"layout":{"full_width":false,"style":"classic"}},"custom_domain":"docs.apollo.io","childrenProjects":[],"derivedPlan":"business-annual-2024","description":"Apollo.io provides API documentation for customers, partners, and developers. Documentation includes a Get Started guide, Apollo Marketplace information, endpoint documentation, tutorials, and API testing capabilities.","isExternalSnippetActive":false,"error404":"","experiments":[],"first_page":"landing","flags":{"allowReusableOTPs":false,"alwaysShowDocPublishStatus":false,"allowUnsafeCustomHtmlSuggestionsFromNonAdmins":false,"allowXFrame":false,"apiAccessRevoked":false,"correctnewlines":false,"dashReact":false,"devDashBillingRedesignEnabled":false,"developerPortal":false,"disablePasswordlessLogin":false,"directGoogleToStableVersion":false,"disableAnonForum":false,"disableAutoTranslate":false,"disableSAMLScoping":false,"disableSignups":false,"enterprise":false,"graphql":false,"mdx":true,"newEditorDash":true,"oauth":false,"passwordlessLogin":"default","owlbotAi":false,"rdmdCompatibilityMode":false,"reviewWorkflow":true,"singleProjectEnterprise":false,"staging":false,"star":false,"superHub":true,"superHubDevelopment":false,"translation":false,"enableOidc":false,"customComponents":true,"disableDiscussionSpamRecaptchaBypass":false,"developerViewUsersData":false,"changelogRssAlwaysPublic":false,"bidiSync":true,"superHubMigrationSelfServeFlow":true,"apiDesigner":false,"hideEnforceSSO":false,"localLLM":false,"superHubManageVersions":true,"gitSidebar":true,"superHubGlobalCustomBlocks":false,"childManagedBidi":false,"externalSdkSnippets":false,"migrationPreview":false,"requiresJQuery":false,"superHubBranches":false,"superHubPreview":false,"superHubBranchReviews":false,"superHubMergePermissions":false},"fullBaseUrl":"https://docs.apollo.io/","git":{"migration":{"createRepository":{"start":"2025-01-17T17:38:27.892Z","end":"2025-01-17T17:38:28.371Z","status":"successful"},"transformation":{"end":"2025-01-17T17:38:28.753Z","start":"2025-01-17T17:38:28.531Z","status":"successful"},"migratingPages":{"end":"2025-01-17T17:38:29.692Z","start":"2025-01-17T17:38:28.784Z","status":"successful"},"enableSuperhub":{"start":"2025-01-17T17:39:52.414Z","status":"successful","end":"2025-01-17T17:39:52.415Z"}},"sync":{"linked_repository":{"id":"940226674","name":"techcomm-api-docs-public","url":"https://github.com/apolloio/techcomm-api-docs-public","provider_type":"github","privacy":{"visibility":"private","private":true},"linked_at":"2025-02-27T20:28:13.869Z","linked_by":"667ed11698b652000fe7b0fa","connection":"67c0ca13dbf6f60029bdfa17","full_name":"apolloio/techcomm-api-docs-public","error":{}},"installationRequest":{},"connections":[{"_id":"67c0ca13dbf6f60029bdfa17","active":true,"created_at":"2025-02-27T20:24:50.000Z","installation_id":61803120,"owner":{"type":"Organization","id":19340971,"login":"apolloio","site_admin":false},"provider_type":"github"}],"providers":[]}},"glossaryTerms":[{"_id":"66689305be97fb0010fdfc29","term":"parliament","definition":"Owls are generally solitary, but when seen together the group is called a 'parliament'!"}],"graphqlSchema":"","gracePeriod":{"enabled":false,"endsAt":null},"shouldGateDash":false,"healthCheck":{"provider":"","settings":{"page":"","status":false,"url":""}},"intercom_secure_emailonly":false,"intercom":"","is_active":true,"integrations":{"login":{}},"internal":"","jwtExpirationTime":0,"landing_bottom":[{"type":"docs","alignment":"left","pageType":"Documentation"},{"type":"text","alignment":"center","title":"Explore & test our endpoints"},{"type":"docs","alignment":"left","pageType":"Reference","html":""}],"mdxMigrationStatus":"rdmd","metrics":{"monthlyLimit":0,"thumbsEnabled":true,"monthlyPurchaseLimit":0,"meteredBilling":{}},"modules":{"landing":true,"docs":true,"examples":false,"reference":true,"graphql":false,"changelog":false,"discuss":false,"suggested_edits":true,"custompages":true,"tutorials":false},"name":"Apollo API Documentation","nav_names":{"docs":"Get Started","reference":"Reference Docs","changelog":"","discuss":"","recipes":"","tutorials":""},"oauth_url":"","onboardingCompleted":{"api":true,"appearance":true,"documentation":true,"domain":true,"jwt":false,"logs":false,"metricsSDK":false},"owlbot":{"customization":{"tone":"neutral","customTone":"","answerLength":"long","forbiddenWords":"","defaultAnswer":""},"enabled":false,"isPaying":false,"copilot":{"enabled":false,"hasBeenUsed":false,"installedCustomPage":""}},"owner":{"id":null,"email":null,"name":null},"plan":"business-annual-2024","planOverride":"","planSchedule":{"stripeScheduleId":null,"changeDate":null,"nextPlan":null},"planStatus":"active","planTrial":"business-annual-2024","readmeScore":{"components":{"newDesign":{"enabled":true,"points":25},"reference":{"enabled":true,"points":50},"tryItNow":{"enabled":true,"points":35},"syncingOAS":{"enabled":false,"points":10},"customLogin":{"enabled":false,"points":25},"metrics":{"enabled":false,"points":40},"recipes":{"enabled":false,"points":15},"pageVoting":{"enabled":true,"points":1},"suggestedEdits":{"enabled":false,"points":10},"support":{"enabled":false,"points":5},"htmlLanding":{"enabled":false,"points":5},"guides":{"enabled":true,"points":10},"changelog":{"enabled":false,"points":5},"glossary":{"enabled":false,"points":1},"variables":{"enabled":false,"points":1},"integrations":{"enabled":true,"points":2}},"totalScore":123},"reCaptchaSiteKey":"","reference":{"alwaysUseDefaults":true,"defaultExpandResponseExample":true,"defaultExpandResponseSchema":false,"enableOAuthFlows":false},"seo":{"overwrite_title_tag":false},"stable":{"_id":"66689305be97fb0010fdfc2d","version":"1.0","version_clean":"1.0.0","codename":"","is_stable":true,"is_beta":false,"is_hidden":false,"is_deprecated":false,"categories":["66689305be97fb0010fdfc2f","66689305be97fb0010fdfc2f","66689305be97fb0010fdfc32","667ee9321395cf002a7dcc92","667eea60eb3760006fd328f5","667ef663f4e5b7005b4c29b5","667ef663c405d0001ff53a47","667ef6bce7f81e0011c11977","667f3e1af4eaec0023396306","6682e19efe956c0071d306ed","66830007d56bfc002a1e22fe","668310d5a44d20005bea1b26","66831468542219000f7cc52e","668316704bd9c4003d997340","668d5769af6f8e0018d99776","668d6b12e9fc06003cb16757","668d6b2438dab5005844c404","6696ace2e3647400672ec157","6698147e0fa70000186b606e"],"project":"66689305be97fb0010fdfc27","releaseDate":"2024-06-11T18:10:13.286Z","createdAt":"2024-06-11T18:10:13.336Z","updatedAt":"2024-11-01T21:31:42.366Z","__v":1,"pdfStatus":"complete","apiRegistries":[{"name":"apollo-rest-api","url":"klsimk28m3qjm0qi"}]},"subdomain":"apolloio","subpath":"","superHubWaitlist":true,"topnav":{"left":[],"right":[],"bottom":[],"edited":true},"trial":{"trialDeadlineEnabled":true,"trialEndsAt":"2024-06-25T18:10:13.204Z"},"translate":{"provider":"transifex","show_widget":false,"key_public":"","org_name":"","project_name":"","languages":[]},"url":"apollo.io","versions":[{"_id":"66689305be97fb0010fdfc2d","version":"1.0","version_clean":"1.0.0","codename":"","is_stable":true,"is_beta":false,"is_hidden":false,"is_deprecated":false,"categories":["66689305be97fb0010fdfc2f","66689305be97fb0010fdfc2f","66689305be97fb0010fdfc32","667ee9321395cf002a7dcc92","667eea60eb3760006fd328f5","667ef663f4e5b7005b4c29b5","667ef663c405d0001ff53a47","667ef6bce7f81e0011c11977","667f3e1af4eaec0023396306","6682e19efe956c0071d306ed","66830007d56bfc002a1e22fe","668310d5a44d20005bea1b26","66831468542219000f7cc52e","668316704bd9c4003d997340","668d5769af6f8e0018d99776","668d6b12e9fc06003cb16757","668d6b2438dab5005844c404","6696ace2e3647400672ec157","6698147e0fa70000186b606e"],"project":"66689305be97fb0010fdfc27","releaseDate":"2024-06-11T18:10:13.286Z","createdAt":"2024-06-11T18:10:13.336Z","updatedAt":"2024-11-01T21:31:42.366Z","__v":1,"pdfStatus":"complete","apiRegistries":[{"name":"apollo-rest-api","url":"klsimk28m3qjm0qi"}]}],"variableDefaults":[],"webhookEnabled":false,"isHubEditable":true},"projectStore":{"data":{"allow_crawlers":"disabled","canonical_url":null,"default_version":{"name":"1.0"},"description":"Apollo.io provides API documentation for customers, partners, and developers. Documentation includes a Get Started guide, Apollo Marketplace information, endpoint documentation, tutorials, and API testing capabilities.","git":{"connection":{"repository":{"full_name":"apolloio/techcomm-api-docs-public","name":"techcomm-api-docs-public","provider_type":"github","url":"https://github.com/apolloio/techcomm-api-docs-public"},"organization":{"name":"apolloio","provider_type":"github"},"status":"active"}},"glossary":[{"_id":"66689305be97fb0010fdfc29","term":"parliament","definition":"Owls are generally solitary, but when seen together the group is called a 'parliament'!"}],"homepage_url":"apollo.io","id":"66689305be97fb0010fdfc27","name":"Apollo API Documentation","parent":null,"redirects":[],"sitemap":"disabled","llms_txt":"disabled","subdomain":"apolloio","suggested_edits":"enabled","uri":"/projects/me","variable_defaults":[],"webhooks":[],"api_designer":{"allow_editing":"enabled"},"custom_login":{"login_url":null,"logout_url":null},"features":{"mdx":"enabled"},"mcp":{},"onboarding_completed":{"api":true,"appearance":true,"documentation":true,"domain":true,"jwt":false,"logs":false,"metricsSDK":false},"pages":{"not_found":null},"privacy":{"openapi":"admin","password":null,"view":"public"},"refactored":{"status":"enabled","migrated":"successful"},"seo":{"overwrite_title_tag":"disabled"},"plan":{"type":"business-annual-2024","grace_period":{"enabled":false,"end_date":null},"trial":{"expired":false,"end_date":"2024-06-25T18:10:13.204Z"}},"reference":{"api_sdk_snippets":"disabled","defaults":"always_use","json_editor":"disabled","oauth_flows":"disabled","request_history":"disabled","response_examples":"expanded","response_schemas":"collapsed","sdk_snippets":{"external":"disabled"}},"health_check":{"provider":"none","settings":{"manual":{"status":"down","url":null},"statuspage":{"id":null}}},"integrations":{"aws":{"readme_webhook_login":{"region":null,"external_id":null,"role_arn":null,"usage_plan_id":null}},"bing":{"verify":null},"google":{"analytics":null,"site_verification":null},"heap":{"id":null},"koala":{"key":null},"localize":{"key":null},"postman":{"key":null,"client_id":null,"client_secret":null},"recaptcha":{"site_key":null,"secret_key":null},"segment":{"key":null,"domain":null},"speakeasy":{"key":null,"spec_url":null},"stainless":{"key":null,"name":null},"typekit":{"key":null},"zendesk":{"subdomain":null},"intercom":{"app_id":null,"secure_mode":{"key":null,"email_only":false}}},"permissions":{"appearance":{"private_label":"enabled","custom_code":{"css":"enabled","html":"enabled","js":"disabled"}},"branches":{"merge":{"admin":true}}},"appearance":{"brand":{"primary_color":"#243031","link_color":"#9C73FF","theme":"system"},"changelog":{"layout":"collapsed","show_author":true,"show_exact_date":false},"layout":{"full_width":"disabled","style":"classic"},"markdown":{"callouts":{"icon_font":"emojis"}},"table_of_contents":"enabled","whats_next_label":null,"footer":{"readme_logo":"show"},"logo":{"size":"large","dark_mode":{"uri":null,"url":null,"name":null,"width":null,"height":null,"color":null,"links":{"original_url":null}},"main":{"uri":"/images/67c0b470cce2ce00709f1d05","url":"https://files.readme.io/f6380b7ec919ddcbab7a343f1432c83d4f2ac22f4baf8ad6cf2eca3a03ef8d49-white-logo.svg","name":"f6380b7ec919ddcbab7a343f1432c83d4f2ac22f4baf8ad6cf2eca3a03ef8d49-white-logo.svg","width":null,"height":null,"color":"#ffffff","links":{"original_url":null}},"favicon":{"uri":"/images/67c0b4c488e5ad002a43f486","url":"https://files.readme.io/9bb316d5387ec84217cececdbdd02b2841d118f382e06a5df31f7a8e8b8debc3-favicon.ico","name":"9bb316d5387ec84217cececdbdd02b2841d118f382e06a5df31f7a8e8b8debc3-favicon.ico","width":32,"height":32,"color":"#000000","links":{"original_url":null}}},"custom_code":{"css":null,"js":null,"html":{"header":"","home_footer":null,"page_footer":null}},"header":{"type":"overlay","gradient_color":null,"link_style":"buttons","overlay":{"fill":"cover","type":"custom","position":"top-left","image":{"uri":null,"url":"https://files.readme.io/ddf9fac5f13c2d370c5c1d60f7f558814f8ccc10166b26e72eca34359a0d10f2-Frame_99243652.png","name":"ddf9fac5f13c2d370c5c1d60f7f558814f8ccc10166b26e72eca34359a0d10f2-Frame_99243652.png","width":4000,"height":1000,"color":"#876f86","links":{"original_url":null}}}},"ai":{"dropdown":"disabled","options":{"chatgpt":"enabled","claude":"enabled","clipboard":"enabled","copilot":"enabled","view_as_markdown":"enabled"}},"navigation":{"first_page":"landing_page","left":[],"logo_link":"landing_page","page_icons":"enabled","right":[],"sub_nav":[],"subheader_layout":"links","version":"disabled","links":{"home":{"label":"Home","visibility":"enabled"},"graphql":{"label":"GraphQL","visibility":"disabled"},"guides":{"label":"Guides","alias":"Get Started","visibility":"enabled"},"reference":{"label":"API Reference","alias":"Reference Docs","visibility":"enabled"},"recipes":{"label":"Recipes","alias":null,"visibility":"disabled"},"changelog":{"label":"Changelog","alias":null,"visibility":"disabled"},"discussions":{"label":"Discussions","alias":null,"visibility":"disabled"}}}}}},"version":{"_id":"66689305be97fb0010fdfc2d","version":"1.0","version_clean":"1.0.0","codename":"","is_stable":true,"is_beta":false,"is_hidden":false,"is_deprecated":false,"categories":["66689305be97fb0010fdfc2f","66689305be97fb0010fdfc2f","66689305be97fb0010fdfc32","667ee9321395cf002a7dcc92","667eea60eb3760006fd328f5","667ef663f4e5b7005b4c29b5","667ef663c405d0001ff53a47","667ef6bce7f81e0011c11977","667f3e1af4eaec0023396306","6682e19efe956c0071d306ed","66830007d56bfc002a1e22fe","668310d5a44d20005bea1b26","66831468542219000f7cc52e","668316704bd9c4003d997340","668d5769af6f8e0018d99776","668d6b12e9fc06003cb16757","668d6b2438dab5005844c404","6696ace2e3647400672ec157","6698147e0fa70000186b606e"],"project":"66689305be97fb0010fdfc27","releaseDate":"2024-06-11T18:10:13.286Z","createdAt":"2024-06-11T18:10:13.336Z","updatedAt":"2024-11-01T21:31:42.366Z","__v":1,"pdfStatus":"complete","apiRegistries":[{"name":"apollo-rest-api","url":"klsimk28m3qjm0qi"}]}},"is404":false,"isDetachedProductionSite":false,"lang":"en","langFull":"Default","reqUrl":"/docs/use-oauth-20-authorization-flow-to-access-apollo-user-information-partners","version":{"_id":"66689305be97fb0010fdfc2d","version":"1.0","version_clean":"1.0.0","codename":"","is_stable":true,"is_beta":false,"is_hidden":false,"is_deprecated":false,"categories":["66689305be97fb0010fdfc2f","66689305be97fb0010fdfc2f","66689305be97fb0010fdfc32","667ee9321395cf002a7dcc92","667eea60eb3760006fd328f5","667ef663f4e5b7005b4c29b5","667ef663c405d0001ff53a47","667ef6bce7f81e0011c11977","667f3e1af4eaec0023396306","6682e19efe956c0071d306ed","66830007d56bfc002a1e22fe","668310d5a44d20005bea1b26","66831468542219000f7cc52e","668316704bd9c4003d997340","668d5769af6f8e0018d99776","668d6b12e9fc06003cb16757","668d6b2438dab5005844c404","6696ace2e3647400672ec157","6698147e0fa70000186b606e"],"project":"66689305be97fb0010fdfc27","releaseDate":"2024-06-11T18:10:13.286Z","createdAt":"2024-06-11T18:10:13.336Z","updatedAt":"2024-11-01T21:31:42.366Z","__v":1,"pdfStatus":"complete","apiRegistries":[{"name":"apollo-rest-api","url":"klsimk28m3qjm0qi"}]},"gitVersion":{"base":null,"display_name":null,"name":"1.0","release_stage":"release","source":"readme","state":"current","updated_at":"2025-07-16T22:49:21.000Z","uri":"/branches/1.0","privacy":{"view":"default"}},"versions":{"total":1,"page":1,"per_page":100,"paging":{"next":null,"previous":null,"first":"/apolloio/api-next/v2/branches?page=1&per_page=100","last":null},"data":[{"base":null,"display_name":null,"name":"1.0","release_stage":"release","source":"readme","state":"current","updated_at":"2025-07-16T22:46:18.689Z","uri":"/branches/1.0","privacy":{"view":"default"}}],"type":"version"}}">