{"info":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","description":"

Authentication

\n

The Crossbeam API negotiates authentication using OAuth 2.0. If you are looking to integrate the Crossbeam API with an existing application or service, follow the standards for that architecture or ecosystem for OAuth 2.0 authorization using these URLs:

\n\n

Before you begin, you will need to create Application in Crossbeam; see the Custom section of https://app.crossbeam.com/integrations or see our help docs, found here.

\n

If you want to get started quickly to kick the tires, see our section on Getting Started with Postman below.

\n

Scope

\n

OAuth scopes define the permissions your application will request from Crossbeam. For example, you might want to be able to access data about your partnerships, read report data, or be able to read and update threads.

\n

Our documentation for each endpoint includes which scope(s) is required in order to use the endpoint. Here is some base information about choosing a scope value:

\n\n

For reference, here is a full list of scopes that our API accepts:

\n\n

Access Token Expiry and Refresh Tokens

\n

Access tokens are only valid for 24 hours. In order to stay authenticated, you may request a Refresh Token.

\n

To do so, add offline_access to your list of scopes when authenticating. For example, if you only want to access /v1/partners, the scope would be openid read:partnerships offline_access. Y

\n

In order to exchange a refresh_token for a new access_token, below is a sample cURL. See the 1. Create an Application section below to understand how to obtain a client_id and client_secret.

\n
curl --request POST \\\n  --url 'https://auth.crossbeam.com/oauth/token' \\\n  --header 'content-type: application/x-www-form-urlencoded' \\\n  --data grant_type=refresh_token \\\n  --data 'client_id=YOUR_CLIENT_ID' \\\n  --data client_secret=YOUR_CLIENT_SECRET \\\n  --data refresh_token=YOUR_REFRESH_TOKEN\n\n

Required Headers

\n

Most of our endpoints require 2 headers in order to be authorized. The first is the Authorization header containing the OAuth token. For example

\n

Authorization: Bearer eyJhb....

\n

The second header is used to tell our backend which organization you want to access data for. A Crossbeam user can belong to 1 or more organizations. You can obtain a list of organizations the user belongs to via the /v0.1/users/me endpoint. You can then extract the uuid field for the organization whose data you wish to access and provide this in the Xbeam-Organization header. For example:

\n

Xbeam-Organization: 02fde942-c7cd-4f12-9d4e-07ee8a57c8c6

\n

Sample Client App

\n

We have an example of how a 3rd party application might interact with the REST API to retrieve tokens. Please note that this source code is provided as-is and is not intended for production use.

\n\n

Getting Started with Postman

\n

For quick access to see your data, you can use Postman with this collection. Note that you must use the desktop application, not the web application, which you can download here.

\n

Demo

\n

If you'd prefer to watch this tutorial, a demo is available here. Otherwise continue reading.

\n

1. Create an Application

\n

Log in to Crossbeam and visit https://app.crossbeam.com/integrations, where you will see a section to create a custom integration. Click Create Integration:

\n\n\n\n\n\n

Click Create and once the app has been created, click View. Copy the values for Client ID and Client Secret, you'll need these in the next section.

\n

2. Configure Postman

\n

At the top of these docs, click Run in Postman:

\n\n\n

This will clone our Postman resources into your Postman app.

\n

Next, select the Crossbeam environment as your active environment:

\n\n\n

Finally, we'll edit the Crossbeam API collection to enter your Client ID and Secret which you got from the previous step. The Edit functionality can be found as shown:

\n\n\n

Click on the Variables tab, where you will see variables for client_id and client_secret. Set the Current Value for these variables to the values you copied from the previous section and then click Update.

\n

Note: There are other variables in this section which we are not using right now, but will be useful later. In particular, the scope variable will control what resources your tokens have access to.

\n

Rate Limits

\n

Rate limits are defined in our security policy and are subject to change with our own discretion.

\n

Crossbeam Webhooks

\n

A webhook is one way to subscribe to events and receive information in near real time. The Crossbeam Webhook sends signal information to the endpoint you provide. For more information on signals, see the Understanding Signals section in /v1/signals/\\\\\\\\*. Webhooks are an enterprise only feature.

\n

For a detailed walk-through of the installation process through the Crossbeam UI, check out the documentation in the Crossbeam Help Center.

\n

Security

\n

The endpoint on the receiving end of a webhook is typically public. This means there are some extra steps to ensure the messages are actually coming from Crossbeam.

\n
    \n
  1. Validate the HMAC Signature. When setting up your webhook in the Crossbeam UI, Crossbeam will provide you with a secret key. Every request from Crossbeam will include the header X-Crossbeam-Signature-256. This is a base64 encoded string you can use to verify the contents of the message. Using your secret key, hash the contents of the body with the timestamp in X-Crossbeam-Timestamp appended and compare that value to the value in X-Crossbeam-Signature-256. See the example code for a more precise understanding.

    \n
  2. \n
  3. Validate the X-Crossbeam-Timestamp header is \"recent\". In this case, the standard for \"recent\" is \"within the past 300 seconds\"

    \n
  4. \n
  5. Use an endpoint that is random and difficult to guess

    \n
  6. \n
\n

Retries

\n

Crossbeam will retry the request several times for certain status codes (408, 429, 500, 502, 503, and 504). After that, a missed message can be retrieved via the rest API.

\n

What to respond with

\n

Please respond with a successful status code: likely either 200 or 201. There is no need to respond with anything in the body.

\n

Example Code

\n

This is a minimal Flask app that receives a request and verifies it in the way Crossbeam expects you to.

\n
from flask import Flask, request, abort\nimport hmac\nimport hashlib\nimport time\nimport base64\napp = Flask(__name__)\n# Shared secret key (received in the Crossbeam UI)\nWEBHOOK_SECRET = b\"111122223333secret\"\n# Allowed timestamp drift (in seconds)\nMAX_TIMESTAMP_AGE = 300  # 5 minutes\ndef verify_signature_and_timestamp(request):\n    \"\"\"Verify the request signature and timestamp header.\"\"\"\n    received_signature = request.headers.get(\"X-Crossbeam-Signature-256\")\n    received_timestamp = request.headers.get(\"X-Crossbeam-Timestamp\")\n    if not received_signature or not received_timestamp:\n        return False, \"Missing required headers\"\n    try:\n        received_timestamp = int(received_timestamp)\n    except ValueError:\n        return False, \"Invalid timestamp format\"\n    now = int(time.time())\n    if abs(now - received_timestamp) > MAX_TIMESTAMP_AGE:\n        return False, \"Timestamp too old or too new\"\n    # Build the signed payload string: \"body+timestamp\"\n    signed_data = f\"{request.data.decode()}{received_timestamp}\".encode()\n    computed_hmac = hmac.new(WEBHOOK_SECRET, signed_data, hashlib.sha256).digest()\n    # Crossbeam's signature is base64 encoded\n    computed_signature = base64.b64encode(computed_hmac).decode()\n    if not hmac.compare_digest(received_signature, computed_signature):\n        return False, \"Invalid signature\"\n    return True, \"Valid\"\n@app.route(\"/webhook/61e68950-415c-4618-84a2-7bffdc6588ad\", methods=[\"POST\"])\ndef webhook():\n    # Validate the request\n    is_valid, message = verify_signature_and_timestamp(request)\n    if not is_valid:\n        print(message)\n        abort(403)\n    payload = request.get_json()\n    # now you can trust the payload is from Crossbeam and process it!\n    # for now, we just print it\n    print(payload)\n    return {}, 200\nif __name__ == \"__main__\":\n    app.run(host=\"0.0.0.0\", port=5000, debug=True)\n\n
\n","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Sample Client App","slug":"sample-client-app"},{"content":"Getting Started with Postman","slug":"getting-started-with-postman"},{"content":"Rate Limits","slug":"rate-limits"},{"content":"Crossbeam Webhooks","slug":"crossbeam-webhooks"}],"owner":"13379768","collectionId":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","publishedId":"2s8Z6savX9","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-06-20T14:22:29.000Z"},"item":[{"name":"/v1/users/me","id":"4c9200e3-b5a9-43dd-a130-e42e7175fc3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","type":"text","value":"keep-alive"},{"key":"Accept","type":"text","value":"application/json"}],"url":"https://api.crossbeam.com/v1/users/me","description":"

Description

\n

This route returns your user profile information as well as which organization(s) you belong to.

\n

This is the first endpoint you should inspect before others, as it will provide you the proper value to use in the XBeam-Organization header.

\n

XBeam-Organization

\n

Subsequent calls to routes after this requires an XBeam-Organization header provided. The valid values to use here are the organization.uuid in each item in authorizations.

\n

Scopes

\n\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","users","me"],"host":["https://api.crossbeam.com"],"query":[],"variable":[]}},"response":[{"id":"85289628-7df2-47d9-9a35-d5c2070a193c","name":"/v1/users/me","originalRequest":{"method":"GET","header":[{"key":"Connection","type":"text","value":"keep-alive"},{"key":"Accept","type":"text","value":"application/json"},{"key":"","type":"text","value":"","disabled":true}],"url":"https://api.crossbeam.com/v1/users/me"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.19.1"},{"key":"Date","value":"Mon, 11 Jan 2021 14:47:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"13806"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"https://app.xbeam.dev1"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"id\": 12345,\n \"active\": true,\n \"email\": \"user@domain.com\",\n \"first_name\": \"First \",\n \"last_name\": \"Last\",\n \"picture_url\": \"https://www.kindpng.com/picc/m/24-248253_user-profile-default-image-png-clipart-png-download.png\",\n \"organizations\": [\n {\n \"role\": {\n \"description\": \"Manage all aspects of your organization, its partnerships, and its users.\",\n \"name\": \"Admin\",\n \"uuid\": \"a1771b7b-c0ea-49f7-88b0-02ddd2a9ae28\"\n },\n \"logo_url\": \"https://s3.amazonaws.com/assets.getcrossbeam.com/img/demo/dunder-mifflin.jpg\",\n \"name\": \"Dunder Mifflin\",\n \"sales_edge_role\": \"reply-only\",\n \"domain\": \"dundermifflin.com\",\n \"uuid\": \"36dff61a-70b1-4201-9e99-5f37cd2b6650\"\n },\n {\n \"role\": {\n \"description\": \"Manage all aspects of your organization, its partnerships, and its users.\",\n \"name\": \"Admin\",\n \"uuid\": \"2102da6e-a3c0-4d3e-b59a-dfc9f04d8a72\"\n },\n \"logo_url\": \"https://upload.wikimedia.org/wikipedia/en/a/ae/Los_Pollos_Hermanos_logo.png\",\n \"name\": \"Los Pollos Hermanos\",\n \"sales_edge_role\": \"reply-only\",\n \"domain\": \"lospolloshermanos.com\",\n \"uuid\": \"78d8821f-8c81-45c5-b951-3048cb739d55\"\n }\n ]\n }\n ],\n \"warnings\": [\n\n ]\n}"}],"_postman_id":"4c9200e3-b5a9-43dd-a130-e42e7175fc3d"},{"name":"/v1/users/organization/:id","id":"62ca3532-e05c-4c30-be29-cf4e593bea19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","type":"text","value":"keep-alive"},{"key":"Accept","type":"text","value":"application/json"},{"key":"Xbeam-Organization","type":"text","value":""}],"url":"https://api.crossbeam.com/v1/users/organization/:id","description":"

Description

\n

This route returns all of the users that belong to an organization. The authorized user must exist in the organization that this call is made for.

\n

Variables

\n

:id - This is the UUID for the organization that you are searching for users of.

\n

Scopes

\n
    \n
  • n/a
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","users","organization",":id"],"host":["https://api.crossbeam.com"],"query":[],"variable":[{"type":"any","value":"","key":"id"}]}},"response":[{"id":"6ec7a5a6-8da1-469a-bb33-6f2d7a39c8e0","name":"/v1/users/organization/:id","originalRequest":{"method":"GET","header":[{"key":"Connection","type":"text","value":"keep-alive"},{"key":"Accept","type":"text","value":"application/json"},{"key":"","type":"text","value":"","disabled":true}],"url":"https://api.crossbeam.com/v1/users/organization/033724ca-e8e6-4c8b-b7e0-faaf273ef0d3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.19.1"},{"key":"Date","value":"Mon, 11 Jan 2021 14:47:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"13806"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"https://app.xbeam.dev1"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"id\": 22510,\n \"active\": true,\n \"email\": \"bruce@wayneenterprises.demo\",\n \"first_name\": \"Bruce\",\n \"last_name\": \"Wayne\",\n \"picture_url\": \"https://static.wikia.nocookie.net/dccu/images/2/2e/Batman_-_Justice_League_-_promo.jpg/revision/latest?cb=20191214215631\",\n \"organizations\": [\n {\n \"logo_url\": \"https://upload.wikimedia.org/wikipedia/commons/b/b4/Wayne_Enterprises_logo.jpg\",\n \"name\": \"Wayne Enterprises\",\n \"domain\": \"wayneenterprises.demo\",\n \"uuid\": \"fd6b7d76-2b00-48b8-9930-f0714cedc5e0\",\n \"sales_edge_role\": \"salesperson\",\n \"role\": {\n \"uuid\": \"0305d84f-85a0-446b-83ed-08241d2f8a14\",\n \"description\": \"Manage partnerships and partnership-related features like data sharing, reports, and threads. Data sources, integrations, and users are view-only.\",\n \"name\": \"Partner Manager\"\n }\n }\n ]\n },\n {\n \"id\": 30439,\n \"active\": true,\n \"email\": \"richard@wayneenterprises.demo\",\n \"first_name\": \"Richard\",\n \"last_name\": \"Grayson\",\n \"picture_url\": null,\n \"organizations\": [\n {\n \"logo_url\": \"https://upload.wikimedia.org/wikipedia/commons/b/b4/Wayne_Enterprises_logo.jpg\",\n \"name\": \"Wayne Enterprises\",\n \"domain\": \"wayneenterprises.demo\",\n \"uuid\": \"fd6b7d76-2b00-48b8-9930-f0714cedc5e0\",\n \"sales_edge_role\": \"partner-manager\",\n \"role\": {\n \"uuid\": \"0305d84f-85a0-446b-83ed-08241d2f8a14\",\n \"description\": \"Manage partnerships and partnership-related features like data sharing, reports, and threads. Data sources, integrations, and users are view-only.\",\n \"name\": \"Partner Manager\"\n }\n }\n ]\n },\n {\n \"id\": 12925,\n \"active\": true,\n \"email\": \"barbara@wayneenterprises.demo\",\n \"first_name\": \"Barbara\",\n \"last_name\": \"Gordon\",\n \"picture_url\": \"https://lh3.googleusercontent.com/a/ALm5wu3aAAT-D_HruaYLZxlyguLrPhJuS611Ds_pRx21=s96-c\",\n \"organizations\": [\n {\n \"logo_url\": \"https://upload.wikimedia.org/wikipedia/commons/b/b4/Wayne_Enterprises_logo.jpg\",\n \"name\": \"Wayne Enterprises\",\n \"domain\": \"wayneenterprises.demo\",\n \"uuid\": \"fd6b7d76-2b00-48b8-9930-f0714cedc5e0\",\n \"sales_edge_role\": \"partner-manager\",\n \"role\": {\n \"uuid\": \"0305d84f-85a0-446b-83ed-08241d2f8a14\",\n \"description\": \"Manage partnerships and partnership-related features like data sharing, reports, and threads. Data sources, integrations, and users are view-only.\",\n \"name\": \"Partner Manager\"\n }\n }\n ]\n }\n ],\n \"warnings\": [\n\n ]\n}"}],"_postman_id":"62ca3532-e05c-4c30-be29-cf4e593bea19"},{"name":"/v1/partners","id":"97b05259-59b1-4706-aa46-62cd770999dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/partners","description":"

Description

\n

This route returns your partners' information, including any tags that are set on the partner by the users of the organization.

\n

Scopes

\n
    \n
  • read:partnerships
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","partners"],"host":["https://api.crossbeam.com"],"query":[],"variable":[]}},"response":[{"id":"b67d2077-b393-4c36-b255-ff3f4edff261","name":"/v1/partners","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":"02fdf2d1-8adb-442a-8024-c4d0e732ae4b"}],"url":"https://api.crossbeam.com/v1/partners"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,Content-Type,Authorization,X-Requested-With,If-Modified-Since,Cache-Control,X-CSRFToken,XBeam-Organization,User-Agent"},{"key":"Access-Control-Allow-Methods","value":"PUT,GET,POST,DELETE,PATCH,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://app.crossbeam.com"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 30 Nov 2020 18:27:39 GMT"},{"key":"Expect-CT","value":"report-uri=\"https://o230132.ingest.sentry.io/api/1388318/security/?sentry_key=3391b929a8e546a0a97be20acee65ca5\""},{"key":"Pragma","value":"no-cache"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"2021"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"tags\": [\n\n ],\n \"name\": \"Vance Refrigeration\",\n \"domain\": \"refrigeratorsbybob.com\",\n \"uuid\": \"5b550863-1fce-4ed1-bfe6-a7748348fa9d\"\n },\n {\n \"tags\": [\n {\n \"id\": \"031ad06b-0705-4653-ad79-f1447bc39622\",\n \"label\": \"Comic Book Companies\"\n },\n {\n \"id\": \"031acf84-c149-4040-a2c4-feb2a13566e2\",\n \"label\": \"DC Comics\"\n }\n ],\n \"name\": \"Wayne Enterprises\",\n \"domain\": \"definitelynotbatman.com\",\n \"uuid\": \"697fbf3e-f07c-4fe9-b6c5-ef608907750f\"\n },\n {\n \"tags\": [\n {\n \"id\": \"031ad06b-0705-4653-ad79-f1447bc39622\",\n \"label\": \"Comic Book Companies\"\n },\n {\n \"id\": \"031acf84-c149-4040-a2c4-feb2a13566e2\",\n \"label\": \"DC Comics\"\n }\n ],\n \"name\": \"Daily Planet\",\n \"domain\": \"thedailyplanet.com\",\n \"uuid\": \"96b3b848-2418-4647-ab8c-06f1f6a48b99\"\n },\n {\n \"tags\": [\n {\n \"id\": \"031ad06b-0705-4653-ad79-f1447bc39622\",\n \"label\": \"Comic Book Companies\"\n },\n {\n \"id\": \"fd6b7d76-2b00-48b8-9930-f0714cedc5e0\",\n \"label\": \"Marvel Comics\"\n }\n ],\n \"name\": \"Stark Enterprises\",\n \"domain\": \"theoneandonlytonystark.com\",\n \"uuid\": \"96b3b848-2418-1241-ab8c-06f1f6a48b99\"\n }\n ],\n \"pagination\": {\n \"limit\": 25,\n \"page\": 1,\n \"next_href\": \"https://api.crossbeam.com/v1/partners?limit=25&page=2\"\n },\n \"warnings\": [\n\n ]\n}"}],"_postman_id":"97b05259-59b1-4706-aa46-62cd770999dd"},{"name":"/v1/partners/:id","id":"73974244-bc05-4bd9-be80-bd39f3dd78a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/partners/:id","description":"

Description

\n

This route returns your partner's information, as matched by the ID, including any tags that are set on the partner by the users of the organization

\n

Scopes

\n
    \n
  • read:partnerships
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","partners",":id"],"host":["https://api.crossbeam.com"],"query":[],"variable":[{"id":"ca37c974-184d-47c4-8cbc-6c8fe1ca749b","type":"any","value":"033a6ae4-466c-4b84-b5ae-f073a36ee0e9","key":"id"}]}},"response":[{"id":"03cf2580-450c-4280-8ffc-26aabecb8949","name":"/v1/partners/:id","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":"02fdf2d1-8adb-442a-8024-c4d0e732ae4b"}],"url":{"raw":"https://api.crossbeam.com/v1/partners/:id","protocol":"https","host":["api","crossbeam","com"],"path":["v1","partners",":id"],"variable":[{"key":"id","value":"96b3b848-2418-1241-ab8c-06f1f6a48b99"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,Content-Type,Authorization,X-Requested-With,If-Modified-Since,Cache-Control,X-CSRFToken,XBeam-Organization,User-Agent"},{"key":"Access-Control-Allow-Methods","value":"PUT,GET,POST,DELETE,PATCH,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://app.crossbeam.com"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 30 Nov 2020 18:27:39 GMT"},{"key":"Expect-CT","value":"report-uri=\"https://o230132.ingest.sentry.io/api/1388318/security/?sentry_key=3391b929a8e546a0a97be20acee65ca5\""},{"key":"Pragma","value":"no-cache"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"2021"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"tags\": [\n {\n \"id\": \"031ad06b-0705-4653-ad79-f1447bc39622\",\n \"label\": \"Comic Book Companies\"\n },\n {\n \"id\": \"fd6b7d76-2b00-48b8-9930-f0714cedc5e0\",\n \"label\": \"Marvel Comics\"\n }\n ],\n \"name\": \"Stark Enterprises\",\n \"domain\": \"theoneandonlytonystark.com\",\n \"uuid\": \"96b3b848-2418-1241-ab8c-06f1f6a48b99\"\n }\n ],\n \"warnings\": []\n}"}],"_postman_id":"73974244-bc05-4bd9-be80-bd39f3dd78a9"},{"name":"/v1/partner-tags","id":"e09cef2c-c483-4f50-9f38-ab26536294ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/partner-tags","description":"

Description

\n

This route returns your partner's information, as matched by the ID, including any tags that are set on the partner by the users of the organization

\n

Scopes

\n
    \n
  • read:partnerships
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","partner-tags"],"host":["https://api.crossbeam.com"],"query":[],"variable":[]}},"response":[{"id":"961a6cd9-ccc9-4708-a018-8055c4b472c4","name":"/v1/partner-tags","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":"02fdf2d1-8adb-442a-8024-c4d0e732ae4b"}],"url":"https://api.crossbeam.com/v1/partner-tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,Content-Type,Authorization,X-Requested-With,If-Modified-Since,Cache-Control,X-CSRFToken,XBeam-Organization,User-Agent"},{"key":"Access-Control-Allow-Methods","value":"PUT,GET,POST,DELETE,PATCH,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://app.crossbeam.com"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 30 Nov 2020 18:27:39 GMT"},{"key":"Expect-CT","value":"report-uri=\"https://o230132.ingest.sentry.io/api/1388318/security/?sentry_key=3391b929a8e546a0a97be20acee65ca5\""},{"key":"Pragma","value":"no-cache"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"2021"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"id\": \"031ad06b-0705-4653-ad79-f1447bc39622\",\n \"label\": \"Comic Book Companies\"\n },\n {\n \"id\": \"fd6b7d76-2b00-48b8-9930-f0714cedc5e0\",\n \"label\": \"Marvel Comics\"\n }\n ],\n \"pagination\": {\n \"limit\": 25,\n \"page\": 1,\n \"next_href\": \"https://api.crossbeam.com/v1/partner-tags?limit=25&page=2\"\n },\n \"warnings\": []\n}"}],"_postman_id":"e09cef2c-c483-4f50-9f38-ab26536294ab"},{"name":"/v1/populations","id":"a162a8f3-370c-4fc0-81c7-5916a785fa87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/populations","description":"

Description

\n

This route returns all of your populations.

\n

Scopes

\n
    \n
  • read:populations
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","populations"],"host":["https://api.crossbeam.com"],"query":[],"variable":[]}},"response":[{"id":"0cd0dbcd-ee99-4185-9853-f47e91a83d7e","name":"/v1/populations","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":"02fdf2d1-8adb-442a-8024-c4d0e732ae4b"}],"url":"https://api.crossbeam.com/v1/populations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,Content-Type,Authorization,X-Requested-With,If-Modified-Since,Cache-Control,X-CSRFToken,XBeam-Organization,User-Agent"},{"key":"Access-Control-Allow-Methods","value":"PUT,GET,POST,DELETE,PATCH,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://app.crossbeam.com"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 30 Nov 2020 18:27:18 GMT"},{"key":"Expect-CT","value":"report-uri=\"https://o230132.ingest.sentry.io/api/1388318/security/?sentry_key=3391b929a8e546a0a97be20acee65ca5\""},{"key":"Pragma","value":"no-cache"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"411"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"description\": null,\n \"name\": \"Leads\",\n \"population_type\": \"people\",\n \"id\": 17087,\n \"standard_type\": null\n },\n {\n \"description\": null,\n \"name\": \"Open Opportunities\",\n \"population_type\": \"companies\",\n \"id\": 17086,\n \"standard_type\": \"open_opportunities\"\n },\n {\n \"description\": null,\n \"name\": \"Customers\",\n \"population_type\": \"companies\",\n \"id\": 17059,\n \"standard_type\": \"customers\"\n },\n {\n \"description\": null,\n \"name\": \"Prospects\",\n \"population_type\": \"companies\",\n \"id\": 17060,\n \"standard_type\": \"prospects\"\n }\n ],\n \"warnings\": []\n}"}],"_postman_id":"a162a8f3-370c-4fc0-81c7-5916a785fa87"},{"name":"/v1/populations/:id","id":"ddc173f6-063d-4c1c-8728-bf4d8d771f21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/populations/:id","description":"

Description

\n

This route returns population with an ID matching the ID included in the path.

\n

Scopes

\n
    \n
  • read:populations
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","populations",":id"],"host":["https://api.crossbeam.com"],"query":[],"variable":[{"id":"e8f576e8-c4e4-455b-b21b-dbfd63815caf","type":"any","value":"10111","key":"id"}]}},"response":[{"id":"856db608-79d8-4281-abee-1fbca7329da5","name":"/v1/populations","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":"02fdf2d1-8adb-442a-8024-c4d0e732ae4b"}],"url":{"raw":"https://api.crossbeam.com/v1/populations/:id","protocol":"https","host":["api","crossbeam","com"],"path":["v1","populations",":id"],"variable":[{"key":"id","value":"17087"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,Content-Type,Authorization,X-Requested-With,If-Modified-Since,Cache-Control,X-CSRFToken,XBeam-Organization,User-Agent"},{"key":"Access-Control-Allow-Methods","value":"PUT,GET,POST,DELETE,PATCH,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://app.crossbeam.com"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 30 Nov 2020 18:27:18 GMT"},{"key":"Expect-CT","value":"report-uri=\"https://o230132.ingest.sentry.io/api/1388318/security/?sentry_key=3391b929a8e546a0a97be20acee65ca5\""},{"key":"Pragma","value":"no-cache"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"411"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"description\": null,\n \"name\": \"Leads\",\n \"population_type\": \"people\",\n \"id\": 17087,\n \"standard_type\": null\n }\n ],\n \"warnings\": []\n}"}],"_postman_id":"ddc173f6-063d-4c1c-8728-bf4d8d771f21"},{"name":"/v1/partner-populations","id":"160d4d9e-ed35-4c6c-9d92-f59e522515c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":"","type":"text"}],"url":"https://api.crossbeam.com/v1/partner-populations","description":"

Description

\n

This route returns the populations that your partners have chosen to share with you.

\n

Scopes

\n
    \n
  • read:partnerships
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","partner-populations"],"host":["https://api.crossbeam.com"],"query":[],"variable":[]}},"response":[{"id":"5b2db146-7c61-46a5-baba-99175215cb33","name":"/v1/partner-populations","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":"02fdf2d1-8adb-442a-8024-c4d0e732ae4b","type":"text"}],"url":"https://api.crossbeam.com/v1/partner-populations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,Content-Type,Authorization,X-Requested-With,If-Modified-Since,Cache-Control,X-CSRFToken,XBeam-Organization,User-Agent"},{"key":"Access-Control-Allow-Methods","value":"PUT,GET,POST,DELETE,PATCH,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://app.crossbeam.com"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 30 Nov 2020 18:27:53 GMT"},{"key":"Expect-CT","value":"report-uri=\"https://o230132.ingest.sentry.io/api/1388318/security/?sentry_key=3391b929a8e546a0a97be20acee65ca5\""},{"key":"Pragma","value":"no-cache"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"327"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"description\": null,\n \"name\": \"Customers\",\n \"population_type\": \"companies\",\n \"id\": 11113,\n \"standard_type\": \"customers\"\n },\n {\n \"description\": null,\n \"name\": \"Open Opportunities\",\n \"population_type\": \"companies\",\n \"id\": 11114,\n \"standard_type\": \"open_opportunities\"\n },\n {\n \"description\": null,\n \"name\": \"Prospects\",\n \"population_type\": \"companies\",\n \"id\": 11115,\n \"standard_type\": \"prospects\"\n },\n {\n \"description\": null,\n \"name\": \"Open Opportunities\",\n \"population_type\": \"companies\",\n \"id\": 11117,\n \"standard_type\": \"open_opportunities\"\n },\n {\n \"description\": null,\n \"name\": \"Prospects\",\n \"population_type\": \"companies\",\n \"id\": 11118,\n \"standard_type\": \"prospects\"\n },\n {\n \"description\": null,\n \"name\": \"Customers\",\n \"population_type\": \"companies\",\n \"id\": 11119,\n \"standard_type\": \"customers\"\n },\n {\n \"description\": null,\n \"name\": \"Open Opportunities\",\n \"population_type\": \"companies\",\n \"id\": 11122,\n \"standard_type\": \"open_opportunities\"\n },\n {\n \"description\": null,\n \"name\": \"Customers\",\n \"population_type\": \"companies\",\n \"id\": 11123,\n \"standard_type\": \"customers\"\n },\n {\n \"description\": null,\n \"name\": \"Prospects\",\n \"population_type\": \"companies\",\n \"id\": 11124,\n \"standard_type\": \"prospects\"\n },\n {\n \"description\": null,\n \"name\": \"Open Opportunities\",\n \"population_type\": \"companies\",\n \"id\": 11151,\n \"standard_type\": \"open_opportunities\"\n },\n {\n \"description\": null,\n \"name\": \"Prospects\",\n \"population_type\": \"companies\",\n \"id\": 11152,\n \"standard_type\": \"prospects\"\n },\n {\n \"description\": null,\n \"name\": \"Customers\",\n \"population_type\": \"companies\",\n \"id\": 11153,\n \"standard_type\": \"customers\"\n },\n {\n \"description\": null,\n \"name\": \"Leads\",\n \"population_type\": \"people\",\n \"id\": 11155,\n \"standard_type\": null\n }\n ],\n \"warnings\": []\n}"}],"_postman_id":"160d4d9e-ed35-4c6c-9d92-f59e522515c9"},{"name":"/v1/partner-populations/:id","id":"9e6b56f1-ae3f-4717-b004-17c557011c83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","type":"text","value":""}],"url":"https://api.crossbeam.com/v1/partner-populations/:id","description":"

Description

\n

This route returns the population that a partner has chosen to share with you that matches the ID passed in the path.

\n

Scopes

\n
    \n
  • read:partnerships
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","partner-populations",":id"],"host":["https://api.crossbeam.com"],"query":[],"variable":[{"id":"f5abe9b8-60ef-4d31-a1e7-4d8490c18f6b","type":"any","value":"11","key":"id"}]}},"response":[{"id":"b134d37e-c642-4bd8-ad83-854543264bad","name":"/v1/partner-populations","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":"02fdf2d1-8adb-442a-8024-c4d0e732ae4b","type":"text"}],"url":{"raw":"https://api.crossbeam.com/v1/partner-populations/:id","protocol":"https","host":["api","crossbeam","com"],"path":["v1","partner-populations",":id"],"variable":[{"key":"id","value":"11113"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,Content-Type,Authorization,X-Requested-With,If-Modified-Since,Cache-Control,X-CSRFToken,XBeam-Organization,User-Agent"},{"key":"Access-Control-Allow-Methods","value":"PUT,GET,POST,DELETE,PATCH,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://app.crossbeam.com"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 30 Nov 2020 18:27:53 GMT"},{"key":"Expect-CT","value":"report-uri=\"https://o230132.ingest.sentry.io/api/1388318/security/?sentry_key=3391b929a8e546a0a97be20acee65ca5\""},{"key":"Pragma","value":"no-cache"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"327"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"description\": null,\n \"name\": \"Customers\",\n \"population_type\": \"companies\",\n \"id\": 11113,\n \"standard_type\": \"customers\"\n }\n ],\n \"warnings\": []\n}"}],"_postman_id":"9e6b56f1-ae3f-4717-b004-17c557011c83"},{"name":"/v1/reports","id":"e5bf4507-75b0-48f7-adbd-c31217aabfdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","type":"text","value":"keep-alive"},{"key":"Accept","type":"text","value":"application/json"},{"key":"Xbeam-Organization","type":"text","value":""}],"url":"https://api.crossbeam.com/v1/reports","description":"

Description

\n

This route will return all the Reports you have created.

\n

Scopes

\n
    \n
  • read:reports
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","reports"],"host":["https://api.crossbeam.com"],"query":[],"variable":[]}},"response":[{"id":"768490c0-ebff-4c3b-aff8-3d1ed567e5a7","name":"/v1/reports","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Xbeam-Organization","value":"02fdf2d1-8adb-442a-8024-c4d0e732ae4b","type":"text"}],"url":"https://api.crossbeam.com/v1/reports"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"DNT,X-CustomHeader,Keep-Alive,Content-Type,Authorization,X-Requested-With,If-Modified-Since,Cache-Control,X-CSRFToken,XBeam-Organization,User-Agent"},{"key":"Access-Control-Allow-Methods","value":"PUT,GET,POST,DELETE,PATCH,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"https://app.crossbeam.com"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 30 Nov 2020 18:20:43 GMT"},{"key":"Expect-CT","value":"report-uri=\"https://o230132.ingest.sentry.io/api/1388318/security/?sentry_key=3391b929a8e546a0a97be20acee65ca5\""},{"key":"Pragma","value":"no-cache"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"401"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"organization_id\": 8870,\n \"folder_uuid\": null,\n \"name\": \"Co-Market Joint Success\",\n \"partner_standard_populations\": [],\n \"report_type\": \"custom\",\n \"id\": \"0336bba7-48f6-4dba-914e-a9942986520f\",\n \"partner_population_ids\": [\n 11123\n ],\n \"population_ids\": [\n 17059\n ],\n \"tag_id\": null,\n \"partner_impact_scores\": [\"high\"]\n },\n {\n \"organization_id\": 8870,\n \"folder_uuid\": null,\n \"name\": \"Co-Market Programs\",\n \"partner_standard_populations\": [],\n \"report_type\": \"custom\",\n \"id\": \"0336bbb1-4c38-4d24-9ffc-2943b93289f2\",\n \"partner_population_ids\": [\n 11113\n ],\n \"population_ids\": [\n 17060\n ],\n \"tag_id\": null,\n \"partner_impact_scores\": [\"medium\"]\n },\n {\n \"organization_id\": 8870,\n \"folder_uuid\": null,\n \"name\": \"Deal Registration at Scale\",\n \"partner_standard_populations\": [\n \"open_opportunities\",\n \"customers\"\n ],\n \"report_type\": \"standard\",\n \"id\": \"0336bbd2-9e86-47da-8b11-a4fa2014d635\",\n \"partner_population_ids\": [\n 11113,\n 11114,\n 11117,\n 11119,\n 11122,\n 11123,\n 11151,\n 11153\n ],\n \"population_ids\": [\n 17060\n ],\n \"tag_id\": \"03a536b6-3282-47e3-a6bd-2975ed4537d3\",\n \"partner_impact_scores\": null\n },\n {\n \"organization_id\": 8870,\n \"folder_uuid\": null,\n \"name\": \"Co-Sell to Win\",\n \"partner_standard_populations\": [],\n \"report_type\": \"custom\",\n \"id\": \"0336bbbd-a1d3-4dbf-93b5-d1474475ae2d\",\n \"partner_population_ids\": [\n 11123\n ],\n \"population_ids\": [\n 17086\n ],\n \"tag_id\": null,\n \"partner_impact_scores\": null\n },\n {\n \"organization_id\": 8870,\n \"folder_uuid\": null,\n \"name\": \"Drive EQLs\",\n \"partner_standard_populations\": [\n \"customers\"\n ],\n \"report_type\": \"standard\",\n \"id\": \"0336bbe1-aeef-41ed-b9b2-ed5656ff02e1\",\n \"partner_population_ids\": [\n 11113,\n 11119,\n 11123,\n 11153\n ],\n \"population_ids\": [\n 17060\n ],\n \"tag_id\": null,\n \"partner_impact_scores\": [\"high\", \"medium\"]\n }\n ],\n \"warnings\": []\n}"}],"_postman_id":"e5bf4507-75b0-48f7-adbd-c31217aabfdc"},{"name":"/v1/records/accounts","id":"3a06e198-4888-448e-9a53-985b8ac440f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/records/accounts","description":"

Description

\n

This route returns all of your account records from your own populations.

\n

Query Parameters

\n
    \n
  • limit : How many records to return. Default if not provided is 25. Maximum is 1000.
  • \n
  • cursor: As described in the pagination section, use this to get the next page of records.
  • \n
\n

Pagination

\n

Pagination is controlled with the cursor query parameter. Within the pagination property, you find a map with the following:

\n
    \n
  • next_href : this value contains the URL needed for the next page of results. It includes the cursor and any other query parameters the endpoint was called with.
  • \n
  • next_cursor: this value contains the cursor to use to get the next page of results. In most cases, you should rely on next_href
  • \n
  • has_more: indicates if there are more records to page through. A value offalse is the only definitive way to know there are no more records.
  • \n
\n

Iterating Through the Entire Result Set

\n

Inside of pagination is a next_href property. If this exists, that means there are more records to retrieve. Once it returns null, you have reached the end of the result set.

\n

Scopes

\n
    \n
  • read:reports
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","records","accounts"],"host":["https://api.crossbeam.com"],"query":[],"variable":[]}},"response":[{"id":"b6bf7554-f0b3-4028-b556-bb844077dbfc","name":"/v1/records/accounts","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":{"raw":"https://api.crossbeam.com/v1/records/accounts","protocol":"https","host":["api","crossbeam","com"],"path":["v1","records","accounts"],"query":[{"key":"email","value":"fred@bedrock.com","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.19.3"},{"key":"Date","value":"Tue, 30 Mar 2021 14:38:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1533"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"https://app.xbeam.dev1"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"crm_data\": [\n {\n \"field_name\": \"Account Name\",\n \"field_value\": \"Wayne Enterprises\"\n },\n {\n \"field_name\": \"Lead Score\",\n \"field_value\": 0.0\n },\n {\n \"field_name\": \"Account Website\",\n \"field_value\": \"wayne.enterprises\"\n },\n {\n \"field_name\": \"Account Status\",\n \"field_value\": \"Prospecting\"\n },\n {\n \"field_name\": \"Account Created At\",\n \"field_value\": \"2021-05-10T17:24:15.000+00:00\"\n },\n {\n \"field_name\": \"Prospecting Status\",\n \"field_value\": \"Assigned\"\n }\n ],\n \"populations\": [\n {\n \"id\": 1234,\n \"name\": \"Customers\"\n },\n {\n \"id\": 1235,\n \"name\": \"Prospects\"\n }\n ],\n \"record_type\": \"account\",\n \"record_name\": \"Wayne Enterprises\",\n \"crossbeam_record_id\": \"f28dc66c-f1d5-459a-a01e-1d9865458941\",\n \"record_id\": \"0014W00002MJmeqQAD\",\n \"record_website\": \"wayne.enterprises\",\n \"owner\": {\n \"owner_name\": \"Fred Flintstone\",\n \"owner_email\": \"fred@bedrock.com\",\n \"owner_phone\": null\n }\n },\n {\n \"crm_data\": [\n {\n \"field_name\": \"Account Name\",\n \"field_value\": \"Stark Industries\"\n },\n {\n \"field_name\": \"Lead Score\",\n \"field_value\": 0.0\n },\n {\n \"field_name\": \"Account Website\",\n \"field_value\": \"stark.industries\"\n },\n {\n \"field_name\": \"Account Status\",\n \"field_value\": \"Prospecting\"\n },\n {\n \"field_name\": \"Account Created At\",\n \"field_value\": \"2021-05-10T17:24:15.000+00:00\"\n },\n {\n \"field_name\": \"Prospecting Status\",\n \"field_value\": \"Pool\"\n }\n ],\n \"populations\": [\n {\n \"id\": 1234,\n \"name\": \"Customers\"\n }\n ],\n \"record_type\": \"account\",\n \"record_name\": \"Stark Industries\",\n \"crossbeam_record_id\": \"f28dc66c-f1d5-459a-a01e-1d9865458941\",\n \"record_id\": \"0014W00002MJmeqQAD\",\n \"record_website\": \"stark.industries\",\n \"owner\": {\n \"owner_name\": \"Barney Rubble\",\n \"owner_email\": \"barney@bedrock.com\",\n \"owner_phone\": null\n }\n }\n ],\n \"pagination\": {\n \"has_more\": true,\n \"next_href\": \"https://api.crossbeam.com/v1/records/accounts?limit=2&cursor=eyJsYXN0LW1hc3Rlci11dWlkIjoiMjZkMmRjMmItZjQzMC01MjNmLTlkN2YtMTliZGJlM2YzN2MxIiwibGFzdC1wYXJ0bmVyLW1hc3Rlci11dWlkIjoiY2QyNzZlZTItZDFjNS01YjdiLTg1YzYtNzQxYmY0YTkyZDJlIiwibGFzdC1wYXJ0bmVyLWlkIjo4LCJ0aW1lLXNsaWNlLXN0YXJ0IjoiMTk3MC0wMS0wMVQwMDowMDowMC4wMDArMDA6MDAiLCJ0aW1lLXNsaWNlLWVuZCI6IjIwMjMtMDMtMjhUMTU6NDQ6MTEuNzE3KzAwOjAwIiwiaGFzLW1vcmU_Ijp0cnVlfQ==\",\n \"next_cursor\": \"eyJsYXN0LW1hc3Rlci11dWlkIjoiMjZkMmRjMmItZjQzMC01MjNmLTlkN2YtMTliZGJlM2YzN2MxIiwibGFzdC1wYXJ0bmVyLW1hc3Rlci11dWlkIjoiY2QyNzZlZTItZDFjNS01YjdiLTg1YzYtNzQxYmY0YTkyZDJlIiwibGFzdC1wYXJ0bmVyLWlkIjo4LCJ0aW1lLXNsaWNlLXN0YXJ0IjoiMTk3MC0wMS0wMVQwMDowMDowMC4wMDArMDA6MDAiLCJ0aW1lLXNsaWNlLWVuZCI6IjIwMjMtMDMtMjhUMTU6NDQ6MTEuNzE3KzAwOjAwIiwiaGFzLW1vcmU_Ijp0cnVlfQ==\"\n }\n}"}],"_postman_id":"3a06e198-4888-448e-9a53-985b8ac440f9"},{"name":"/v1/audit-logs","id":"d90a27ae-0f87-4fb5-9d00-3935783c780a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/audit-logs?limit=500","description":"

Description

\n

This route returns all of your account records from your own populations.

\n

Query Parameters

\n
    \n
  • limit : How many records to return. Default if not provided is 1000. Maximum is 1000.

    \n
  • \n
  • cursor: As described in the pagination section, use this to get the next page of records.

    \n
  • \n
\n

Pagination

\n

Pagination is controlled with the cursor query parameter. Within the pagination property, you find a map with the following:

\n
    \n
  • next_href : this value contains the URL needed for the next page of results. It includes the cursor and any other query parameters the endpoint was called with.

    \n
  • \n
  • next_cursor: this value contains the cursor to use to get the next page of results. In most cases, you should rely on next_href

    \n
  • \n
  • has_more: indicates if there are more records to page through. A value offalse is the only definitive way to know there are no more records.

    \n
  • \n
\n

Iterating Through the Entire Result Set

\n

Inside of pagination is a has_more property. If this is true, that means there are more records to retrieve. Once it returns false, you have reached the end of the result set for now, and should try again later until more results are returned.

\n

Scopes

\n
    \n
  • read:reports
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","audit-logs"],"host":["https://api.crossbeam.com"],"query":[{"description":{"content":"

Number of logs to fetch at once, max is 1000

\n","type":"text/plain"},"key":"limit","value":"500"},{"disabled":true,"description":{"content":"

Cursor to pass if provided

\n","type":"text/plain"},"key":"cursor","value":"MTIzNDU="}],"variable":[]}},"response":[{"id":"3a9eb268-fff6-4a3d-92d3-e104e8954d9d","name":"/v1/audit-logs","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":{"raw":"https://api.crossbeam.com/v1/audit-logs?limit=500","protocol":"https","host":["api","crossbeam","com"],"path":["v1","audit-logs"],"query":[{"key":"limit","value":"500","description":"Number of logs to fetch at once, max is 1000"},{"key":"cursor","value":"MTIzNDU=","description":"Cursor to pass if provided","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.19.3"},{"key":"Date","value":"Tue, 30 Mar 2021 14:38:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1533"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"https://app.xbeam.dev1"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"email\": \"bruce@wayne.com\",\n \"previous_state\": \"Robin was made your partner\",\n \"ip_address\": \"192.168.1.2\",\n \"type\": \"Sidekick Management\",\n \"users_impacted\": [\"robin@wayne.com\"],\n \"action\": \"Delete\",\n \"timestamp\": \"2024-04-30T22:50:11.919+00:00\",\n \"user\": \"Bruce Wayne\",\n \"metadata\": \"Robin is no longer your partner\",\n \"partners_impacted\": [\"Krypton\"]\n }\n ],\n \"pagination\": {\n \"next_cursor\": \"eyJ1dWlkIjoiMDM5Y2QxNWQtY2M5Ny00YmFkLWFjNTctZjFlMTVmMDdlZWM0IiwidGltZXN0YW1wIjoiMjAyNC0wNC0zMFQyMjo1MDoxMS45MTkrMDA6MDAifQ==\",\n \"has_more\": true,\n \"next_href\": \"https://api.crossbeam-dev.com/v1/audit-logs?limit=1&cursor=eyJ1dWlkIjoiMDM5Y2QxNWQtY2M5Ny00YmFkLWFjNTctZjFlMTVmMDdlZWM0IiwidGltZXN0YW1wIjoiMjAyNC0wNC0zMFQyMjo1MDoxMS45MTkrMDA6MDAifQ==\"\n }\n}"}],"_postman_id":"d90a27ae-0f87-4fb5-9d00-3935783c780a"},{"name":"/v1/records/accounts/search","id":"21ee830c-fbd8-4ef8-918d-0f7d02185dc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/records/accounts/search?domain=crossbeam.com","description":"

Description

\n

This route returns all of your account records from your own data sources, searching by the record's domain and company name.

\n

Scopes

\n
    \n
  • read:reports
  • \n
\n

Query Parameters

\n

This route accepts one of two query parameters:

\n
    \n
  • term: Fuzzy prefixed based matching: \"wayne\" matches both \"wayne.enterprises.com\" and \"Wayne Enterprises\"

    \n
  • \n
  • record_id: Exact matching based on record_id

    \n
  • \n
  • domain: Exact matching based on domain

    \n
  • \n
  • opportunity_id: Exact matching for accounts associated with the given opportunity

    \n
  • \n
  • contact_id: Exact matching for accounts associated with the given contact

    \n
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","records","accounts","search"],"host":["https://api.crossbeam.com"],"query":[{"key":"domain","value":"crossbeam.com"}],"variable":[]}},"response":[{"id":"2a501194-885c-4140-b3b7-e9ae0f3e4132","name":"/v1/records/accounts/search","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":{"raw":"https://api.crossbeam.com/v1/records/accounts/search?domain=crossbeam.com","protocol":"https","host":["api","crossbeam","com"],"path":["v1","records","accounts","search"],"query":[{"key":"domain","value":"crossbeam.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.19.3"},{"key":"Date","value":"Tue, 30 Mar 2021 14:38:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1533"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"https://app.xbeam.dev1"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"crm_data\": [\n {\n \"field_name\": \"Account Name\",\n \"field_value\": \"Wayne Enterprises\"\n },\n {\n \"field_name\": \"Lead Score\",\n \"field_value\": 0.0\n },\n {\n \"field_name\": \"Account Website\",\n \"field_value\": \"wayne.enterprises\"\n },\n {\n \"field_name\": \"Account Status\",\n \"field_value\": \"Prospecting\"\n },\n {\n \"field_name\": \"Account Created At\",\n \"field_value\": \"2021-05-10T17:24:15.000+00:00\"\n },\n {\n \"field_name\": \"Prospecting Status\",\n \"field_value\": \"Assigned\"\n }\n ],\n \"record_type\": \"account\",\n \"record_name\": \"Wayne Enterprises\",\n \"crossbeam_record_id\": \"f28dc66c-f1d5-459a-a01e-1d9865458941\",\n \"record_id\": \"0014W00002MJmeqQAD\",\n \"source_id\": 10001,\n \"record_website\": \"wayne.enterprises\",\n \"owner\": {\n \"owner_name\": \"Fred Flintstone\",\n \"owner_email\": \"fred@bedrock.com\",\n \"owner_phone\": null\n },\n \"populations\": [\n {\n \"id\": 5230,\n \"name\": \"Customers\"\n },\n {\n \"id\": 6666,\n \"name\": \"Prospects\"\n },\n {\n \"id\": 14587,\n \"name\": \"Customers - Free\"\n }\n ]\n }\n ],\n \"warnings\": []\n}"}],"_postman_id":"21ee830c-fbd8-4ef8-918d-0f7d02185dc7"},{"name":"/v1/records/leads","id":"286b1524-774b-4237-b93b-e71a76c4926a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/records/leads","description":"

Description

\n

This route returns all of your lead records from your own populations.

\n

Query Parameters

\n
    \n
  • limit : How many records to return. Default if not provided is 25. Maximum is 1000.
  • \n
  • cursor: As described in the pagination section, use this to get the next page of records.
  • \n
\n

Pagination

\n

Pagination is controlled with the cursor query parameter. Within the pagination property, you find a map with the following:

\n
    \n
  • next_href : this value contains the URL needed for the next page of results. It includes the cursor and any other query parameters the endpoint was called with.
  • \n
  • next_cursor: this value contains the cursor to use to get the next page of results. In most cases, you should rely on next_href
  • \n
  • has_more: indicates if there are more records to page through. A value offalse is the only definitive way to know there are no more records.
  • \n
\n

Iterating Through the Entire Result Set

\n

Inside of pagination is a next_href property. If this exists, that means there are more records to retrieve. Once it returns null, you have reached the end of the result set.

\n

Scopes

\n
    \n
  • read:reports
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","records","leads"],"host":["https://api.crossbeam.com"],"query":[],"variable":[]}},"response":[{"id":"3465c5f6-680e-4343-a0fd-259d5b2c1c57","name":"/v1/records/leads","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":{"raw":"https://api.crossbeam.com/v1/records/leads","host":["https://api.crossbeam.com"],"path":["v1","records","leads"],"query":[{"key":"page","value":"1","disabled":true},{"key":"email","value":"virginia@triangleinsightsgroup.com","disabled":true},{"key":"limit","value":"3","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.19.3"},{"key":"Date","value":"Tue, 30 Mar 2021 14:38:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1533"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"https://app.xbeam.dev1"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"crm_data\": [\n {\n \"field_name\": \"Lead Title\",\n \"field_value\": \"General Partner\"\n },\n {\n \"field_name\": \"Lead Phone\",\n \"field_value\": \"(862)422-5800x7955\"\n },\n {\n \"field_name\": \"Lead Name\",\n \"field_value\": \"Alfred Pennyworth\"\n },\n {\n \"field_name\": \"Lead Email\",\n \"field_value\": \"alfred@wayne.enterprises.com\"\n },\n {\n \"field_name\": \"Lead Created At\",\n \"field_value\": \"2021-05-12T21:22:38+00:00\"\n }\n ],\n \"populations\": [\n {\n \"id\": 1235,\n \"name\": \"Prospects\"\n }\n ],\n \"record_type\": \"lead\",\n \"record_name\": \"Wayne Inc.\",\n \"updated_at\": \"2022-11-18T11:38:52.125+00:00\",\n \"crossbeam_record_id\": \"f28dc66c-f1d5-459a-a01e-1d9865458941\",\n \"record_id\": \"6967336019\",\n \"owner\": {\n \"owner_name\": \"Fred Flintstone\",\n \"owner_email\": \"fred@bedrock.com\",\n \"owner_phone\": null\n }\n }\n ],\n \"pagination\": {\n \"has_more\": true,\n \"next_href\": \"https://api.crossbeam.com/v1/records/leads?limit=2&cursor=eyJsYXN0LW1hc3Rlci11dWlkIjoiMjZkMmRjMmItZjQzMC01MjNmLTlkN2YtMTliZGJlM2YzN2MxIiwibGFzdC1wYXJ0bmVyLW1hc3Rlci11dWlkIjoiY2QyNzZlZTItZDFjNS01YjdiLTg1YzYtNzQxYmY0YTkyZDJlIiwibGFzdC1wYXJ0bmVyLWlkIjo4LCJ0aW1lLXNsaWNlLXN0YXJ0IjoiMTk3MC0wMS0wMVQwMDowMDowMC4wMDArMDA6MDAiLCJ0aW1lLXNsaWNlLWVuZCI6IjIwMjMtMDMtMjhUMTU6NDQ6MTEuNzE3KzAwOjAwIiwiaGFzLW1vcmU_Ijp0cnVlfQ==\",\n \"next_cursor\": \"eyJsYXN0LW1hc3Rlci11dWlkIjoiMjZkMmRjMmItZjQzMC01MjNmLTlkN2YtMTliZGJlM2YzN2MxIiwibGFzdC1wYXJ0bmVyLW1hc3Rlci11dWlkIjoiY2QyNzZlZTItZDFjNS01YjdiLTg1YzYtNzQxYmY0YTkyZDJlIiwibGFzdC1wYXJ0bmVyLWlkIjo4LCJ0aW1lLXNsaWNlLXN0YXJ0IjoiMTk3MC0wMS0wMVQwMDowMDowMC4wMDArMDA6MDAiLCJ0aW1lLXNsaWNlLWVuZCI6IjIwMjMtMDMtMjhUMTU6NDQ6MTEuNzE3KzAwOjAwIiwiaGFzLW1vcmU_Ijp0cnVlfQ==\"\n }\n}"}],"_postman_id":"286b1524-774b-4237-b93b-e71a76c4926a"},{"name":"/v1/records/leads/search","id":"ba696e13-2be7-46c5-ae26-3792cba4ebd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/records/leads/search?email=bill_dadio@zenith.com","description":"

Description

\n

This route returns all of your lead records from your own data sources, searching by the record's email address.

\n

Scopes

\n
    \n
  • read:reports
  • \n
\n

Query Parameters

\n

This route accepts one of two query parameters:

\n
    \n
  • term: Fuzzy prefixed based matching: \"Alfred\" matches both \"alfred@wayne.enterprises.com\" and \"alfred@wayne.manor.com\"
  • \n
  • record_id: Exact matching based on record_id
  • \n
  • email: Exact matching based on domain
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","records","leads","search"],"host":["https://api.crossbeam.com"],"query":[{"key":"email","value":"bill_dadio@zenith.com"}],"variable":[]}},"response":[{"id":"211eaeac-0442-4a67-bf95-5fa940da4c1b","name":"/v1/records/leads/search","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":{"raw":"https://api.crossbeam.com/v1/records/leads/search?email=alfred@wanye.manor.com","host":["https://api.crossbeam.com"],"path":["v1","records","leads","search"],"query":[{"key":"email","value":"alfred@wanye.manor.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.19.3"},{"key":"Date","value":"Tue, 30 Mar 2021 14:38:58 GMT"},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"1533"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"https://app.xbeam.dev1"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"crm_data\": [\n {\n \"field_name\": \"last name\",\n \"field_value\": \"Pennyworth\"\n },\n {\n \"field_name\": \"first name\",\n \"field_value\": \"Alfred\"\n },\n {\n \"field_name\": \"Email\",\n \"field_value\": \"alfred@wanye.manor.com\"\n }\n ],\n \"crossbeam_record_id\": \"980792b0-3a86-5f37-b143-424716b30718\",\n \"record_id\": \"4807-0-0\",\n \"record_name\": \"alfred@wanye.manor.com\",\n \"record_website\": \"wayne.manor.com\",\n \"record_email\": \"alfred@wanye.manor.com\",\n \"owner\": {\n \"owner_name\": \"Clark Kent\",\n \"owner_email\": \"ckent@justice-league.com\",\n \"owner_phone\": null\n },\n \"populations\": [\n {\n \"id\": 12684,\n \"name\": \"Prospects\"\n }\n ]\n }\n ],\n \"warnings\": []\n}"}],"_postman_id":"ba696e13-2be7-46c5-ae26-3792cba4ebd4"},{"name":"/v1/overlaps/*","id":"3751948e-5247-435f-ac6c-85da3b019086","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/overlaps/*","description":"

Description

\n

The overlaps endpoints deliver the most valuable data in Crossbeam: the overlaps between you and your partners! This section serves as an introduction to the concept of overlaps, an explanantion of the fields returned by the endpoint and an explanation of how pagination and bookmarking works for these endpoints.

\n

Understanding Overlaps

\n

An overlap is a pair of records that match between your records and your partner's record. A match can occur in many ways, but the simplest to understand is when the website on a record in your system exactly matches the website on a record in your partner's system.

\n

For example, if you have an Account in your Salesforce with the following fields:

\n
    \n
  • Name: Wayne Inc.

    \n
  • \n
  • Website wayne.enterprises

    \n
  • \n
  • Account Id: 002K5000002fEhvIAE

    \n
  • \n
\n

And your partner has an Account in their Salesforce with these fields:

\n
    \n
  • Name: Wayne Enterprises

    \n
  • \n
  • Website wayne.enterprises

    \n
  • \n
  • Account Id: 0015Y00002agDTKQA2

    \n
  • \n
\n

These records will be an overlap in Crossbeam (assuming you have the requisite data synced and shared in Crossbeam).

\n

This overlap will be returned by the GET /v1/overlaps/accounts endpoint since your partner's record is an account.

\n

A subset of the properties returned for that overlap are shown below:

\n
{\n            \"record_id\": \"002K5000002fEhvIAE\",\n            \"record_name\": \"Wayne Inc.\",\n            \"record_website\": \"wayne.enterprises\",\n            \"crossbeam_record_id\": \"297d66ea-ca5c-9a98-93f0-a9205b7bbbee\",\n            \"partner_record_id\": \"0015Y00002agDTKQA2\",\n            \"partner_record_name\": \"Wayne Enterprises\",\n            \"partner_record_website\": \"wayne.enterprises\",\n            \"partner_record_company_type\": \"Customer\",\n            \"partner_record_country\": \"USA\",\n            \"partner_record_industry\": \"Retail\",\n            \"partner_record_employees\": 1000,\n            \"partner_crossbeam_record_id\": \"85253548-752b-5a76-f987-77f0d9ed85dd\"\n}\n\n
\n

Notice, all properties that relate to your partner's data are prefixed with partner_. If it doesn't have partner_, it is data from your side of the overlap.

\n

There are two fields in the above JSON not yet mentioned: crossbeam_record_id and partner_crossbeam_record_id. These fields are the unique identifier Crossbeam generates for the record on each side of the overlap. Combining the two crosbeam_records_id's yields a unique identifier of the overlap across all organizations in Crossbeam. It is possible for two different overlaps to share a record_id, since that ID is coming from external systems, and from different organizations. It is possible for two different overlaps to share a crossbeam_record_id since it is possible for a record to overlap with more than one of your partners! Only with a combination of crossbeam_record_id and partner_crossbeam_record_id can you uniquely identify an overlap across Crossbeam customers!

\n

Pagination and Bookmarking

\n

Pagination is controlled with the cursor query parameter. Within the pagination property, you find a map with the following:

\n
    \n
  • next_href : this value contains the URL needed for the next page of results. It includes the cursor and any other query parameters the endpoint was called with.

    \n
  • \n
  • next_cursor: this value contains the cursor to use to get the next page of results. In most cases, you should rely on next_href

    \n
  • \n
  • has_more: indicates if there are more records to page through. A value offalse is the only definitive way to know there are no more records.

    \n
  • \n
\n

To bookmark this endpoint, the next_cursor can be stored after a full sync. If you use it on a later run, the endpoint will return all overlaps that have changed since your last run. Note there are many things that can cause an overlap to change. Things like:

\n
    \n
  • A value in the record changed

    \n
  • \n
  • A data sharing rule changed

    \n
  • \n
  • A record was deleted

    \n
  • \n
  • A record was created

    \n
  • \n
\n

All of these things are covered by the endpoint!

\n

The order the records are returned is not something you can rely on -- the cursor will return what has changed since your last full run of the records, but it won't be in the order they were updated.

\n

Iterating Through the Entire Result Set And Getting Changes

\n

While has_more is true, retrieve additional results using the URL inside next_href. Once has_more is false, you can save the next_href. The next time you call this endpoint, use that URL and you will only get records that are new, updated, or deleted!

\n

Getting deletes with is_deleted:

\n

Overlaps that have been deleted will be marked with an \"is_deleted\": true flag. These records may have been unshared, removed from a CRM, or moved populations. If you are syncing overlaps to another system, you will need to make sure the record still exists in the other system before deleting it.

\n

Query Parameters

\n
    \n
  • limit : How many records to return. Default if not provided is 25. Maximum is 1000.

    \n
  • \n
  • population-ids[]: Which of your own populations to include in the overlaps. Can be used multiple times for multiple populations e.g. ?population-ids[]=1&population-ids[]=42

    \n
  • \n
  • partner-id: Limits the results to overlaps with a specific partner

    \n
  • \n
  • cursor: As described in the pagination section, use this to get the next records.

    \n
  • \n
\n

⚠️ Changing query parameters invalidates the cursor

\n

If you have a stored cursor and want to change the query parameters for your next call, using that cursor will NOT accurately track changes! However, the endpoint will still return results.

\n

You need to restart with no cursor to start accurately tracking changes with your new query params.

\n

Scopes

\n
    \n
  • read:reports
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","overlaps","*"],"host":["https://api.crossbeam.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3751948e-5247-435f-ac6c-85da3b019086"},{"name":"/v1/overlaps/accounts","id":"2140060e-acec-4e53-89cd-576ae0f399e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/overlaps/accounts","description":"

Description

\n

This route returns all records of yours that overlap with a partner's accounts. Your side of the overlap is not necessarily an account. It also provides corresponding information about that partner, such as their organization information and their populations in which your record was matched.

\n

Each call returns a top-level items array described in the example below. It also returns a top-level pagination object which gives you information about how to collect all the information via pagination.

\n

This endpoint can be bookmarked using the cursor returned in pagination. See /v1/overlaps/* above for more information.

\n

Query Parameters

\n
    \n
  • limit : How many records to return. Default if not provided is 25. Maximum is 1000.

    \n
  • \n
  • population-ids[]: Which of your own populations to include in the overlaps. Can be used multiple times for multiple populations e.g. ?population-ids[]=1&population-ids[]=42

    \n
  • \n
  • partner-id: Limits the results to overlaps with a specific partner

    \n
  • \n
  • cursor: As described in the pagination section, use this to get the next records.

    \n
  • \n
\n

⚠️ Changing query parameters invalidates the cursor

\n

If you have a stored cursor and want to change the query parameters for your next call, using that cursor will NOT accurately track changes! However, the endpoint will still return results.

\n

You need to restart with no cursor to start accurately tracking changes with your new query params.

\n

Scopes

\n
    \n
  • read:reports
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","overlaps","accounts"],"host":["https://api.crossbeam.com"],"query":[],"variable":[]}},"response":[{"id":"bb2f3b23-782b-4cc9-9f11-805b4daca482","name":"/v1/overlaps/accounts","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/overlaps/accounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.19.3"},{"key":"Date","value":"Tue, 30 Mar 2021 14:36:45 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"18375"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"https://app.xbeam.dev1"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"partner_name\": \"Justice League, Inc.\",\n \"partner_logo_url\": \"https://image.logo/jl\",\n \"populations\": [\n {\n \"id\": 1234,\n \"name\": \"Customers\"\n },\n {\n \"id\": 1235,\n \"name\": \"Prospects\"\n },\n {\n \"id\": 1984,\n \"name\": \"Customers - Free\"\n }\n ],\n \"partner_owner\": {\n \"owner_name\": \"Clark Kent\",\n \"owner_email\": \"ckent@justice-league.com\",\n \"owner_phone\": null,\n \"crossbeam_owner_id\": \"4d524210-43fa-4ca7-9c6d-47a017fbc6e3\"\n },\n \"partner_source_data\": [\n {\n \"field_name\": \"Customer Status\",\n \"field_value\": \"Customer\"\n },\n {\n \"field_name\": \"Account Website\",\n \"field_value\": \"wayne.enterprises\"\n },\n {\n \"field_name\": \"Account Type\",\n \"field_value\": \"User\"\n },\n {\n \"field_name\": \"Account Name\",\n \"field_value\": \"Wayne Enterprises\"\n }\n ],\n \"partner_record_website\": \"wayne.enterprises\",\n \"partner_populations\": [\n {\n \"id\": 21035,\n \"name\": \"Prospects\"\n }\n ],\n \"crossbeam_record_id\": \"297d66ea-ca5c-9a98-93f0-a9205b7bbbee\",\n \"record_id\": \"002K5000002fEhvIAE\",\n \"record_name\": \"Wayne Inc.\",\n \"record_website\": \"wayne.enterprises\",\n \"record_email\": null,\n \"partner_record_type\": \"account\",\n \"partner_id\": \"9ca31720-d8c8-4620-85bb-354091f01dd9\",\n \"partner_record_name\": \"Wayne Enterprises\",\n \"partner_crossbeam_record_id\": \"85253548-752b-5a76-f987-77f0d9ed85dd\"\n },\n {\n \"partner_name\": \"Avengers Initiative, Inc\",\n \"partner_logo_url\": \"https://image.logo/avenge\",\n \"populations\": [\n {\n \"id\": 5230,\n \"name\": \"Customers\"\n },\n {\n \"id\": 6666,\n \"name\": \"Prospects\"\n },\n {\n \"id\": 14587,\n \"name\": \"Customers - Free\"\n }\n ],\n \"partner_owner\": {\n \"owner_name\": \"Nicholas Fury\",\n \"owner_email\": \"nfury@avengers-shield.com\",\n \"owner_phone\": null,\n \"crossbeam_owner_id\": \"d9e82a05-a6d0-4fd6-a7d3-a0a1bddfed0c\"\n },\n \"partner_source_data\": [\n {\n \"field_name\": \"Customer Status\",\n \"field_value\": \"Customer\"\n },\n {\n \"field_name\": \"Account Website\",\n \"field_value\": \"stark.enterprises\"\n },\n {\n \"field_name\": \"Account Type\",\n \"field_value\": \"End User\"\n },\n {\n \"field_name\": \"Account Name\",\n \"field_value\": \"Stark Enterprises\"\n },\n {\n \"field_name\": \"Industry\",\n \"field_value\": \"Tech\"\n }\n ],\n \"partner_record_website\": \"stark.enterprises\",\n \"partner_populations\": [\n {\n \"id\": 21034,\n \"name\": \"Customers\"\n },\n {\n \"id\": 21035,\n \"name\": \"Prospects\"\n },\n {\n \"id\": 28337,\n \"name\": \"Open Opportunities\"\n }\n ],\n \"crossbeam_record_id\": \"297d66ea-as8a-5b37-93f0-a9205b7bbbee\",\n \"record_id\": \"002K5000002fEhvIAE\",\n \"record_name\": \"Stark Inc.\",\n \"record_website\": \"stark.enterprises\",\n \"record_email\": null,\n \"partner_record_type\": \"account\",\n \"partner_id\": \"a58669b0-799d-4ac4-8a8a-c93bb043d25d\",\n \"partner_record_name\": \"Stark Enterprises\",\n \"partner_crossbeam_record_id\": \"0b4313d4-52d4-5d50-a98f-090872a4ded3\"\n }\n ],\n \"pagination\": {\n \"has_more\": true,\n \"next_href\": \"https://api.crossbeam.com/v1/overlaps/accounts?limit=2&cursor=eyJsYXN0LW1hc3Rlci11dWlkIjoiMjZkMmRjMmItZjQzMC01MjNmLTlkN2YtMTliZGJlM2YzN2MxIiwibGFzdC1wYXJ0bmVyLW1hc3Rlci11dWlkIjoiY2QyNzZlZTItZDFjNS01YjdiLTg1YzYtNzQxYmY0YTkyZDJlIiwibGFzdC1wYXJ0bmVyLWlkIjo4LCJ0aW1lLXNsaWNlLXN0YXJ0IjoiMTk3MC0wMS0wMVQwMDowMDowMC4wMDArMDA6MDAiLCJ0aW1lLXNsaWNlLWVuZCI6IjIwMjMtMDMtMjhUMTU6NDQ6MTEuNzE3KzAwOjAwIiwiaGFzLW1vcmU_Ijp0cnVlfQ==\",\n \"next_cursor\": \"eyJsYXN0LW1hc3Rlci11dWlkIjoiMjZkMmRjMmItZjQzMC01MjNmLTlkN2YtMTliZGJlM2YzN2MxIiwibGFzdC1wYXJ0bmVyLW1hc3Rlci11dWlkIjoiY2QyNzZlZTItZDFjNS01YjdiLTg1YzYtNzQxYmY0YTkyZDJlIiwibGFzdC1wYXJ0bmVyLWlkIjo4LCJ0aW1lLXNsaWNlLXN0YXJ0IjoiMTk3MC0wMS0wMVQwMDowMDowMC4wMDArMDA6MDAiLCJ0aW1lLXNsaWNlLWVuZCI6IjIwMjMtMDMtMjhUMTU6NDQ6MTEuNzE3KzAwOjAwIiwiaGFzLW1vcmU_Ijp0cnVlfQ==\"\n }\n}"}],"_postman_id":"2140060e-acec-4e53-89cd-576ae0f399e9"},{"name":"/v1/overlaps/accounts/search","id":"a72d6ef2-9122-4836-97e8-4cd16153905c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/overlaps/accounts/search?term=Wayne","description":"

Description

\n

This route returns all records of yours that match the given search term and that overlap with a partner's account. It also provides corresponding information about that partner, such as their organization information and their populations in which your record was matched.

\n

This endpoint is not paged.

\n

Scopes

\n
    \n
  • read:reports
  • \n
\n

Query Parameters

\n
    \n
  • term : Fuzzy prefixed based matching: \"wayne\" matches both \"wayne enterprises\" and \"wayne manor\"

    \n
  • \n
  • record_id: Exact matching based on record_id

    \n
  • \n
  • domain: Exact matching based on domain

    \n
  • \n
  • partner-population-ids[]: Which of your partner's populations to include in the overlaps. Can be used multiple times for multiple populations e.g. ?partner-population-ids[]=1&partner-population-ids[]=42

    \n
  • \n
  • partner-id: Limits the results to overlaps with a specific partner

    \n
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","overlaps","accounts","search"],"host":["https://api.crossbeam.com"],"query":[{"key":"term","value":"Wayne"}],"variable":[]}},"response":[{"id":"cc9ca651-0635-4662-a1ba-4f999ccb23d5","name":"/v1/overlaps/accounts?search","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":{"raw":"https://api.crossbeam.com/v1/overlaps/accounts/search?term=Wayne","host":["https://api.crossbeam.com"],"path":["v1","overlaps","accounts","search"],"query":[{"key":"term","value":"Wayne"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.19.3"},{"key":"Date","value":"Tue, 30 Mar 2021 14:36:45 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"18375"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"https://app.xbeam.dev1"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"partner_name\": \"Justice League, Inc.\",\n \"partner_logo_url\": \"https://image.logo/jl\",\n \"populations\": [\n {\n \"id\": 1234,\n \"name\": \"Customers\"\n },\n {\n \"id\": 1235,\n \"name\": \"Prospects\"\n },\n {\n \"id\": 1984,\n \"name\": \"Customers - Free\"\n }\n ],\n \"partner_owner\": {\n \"owner_name\": \"Clark Kent\",\n \"owner_email\": \"ckent@justice-league.com\",\n \"owner_phone\": null,\n \"crossbeam_owner_id\": \"4d524210-43fa-4ca7-9c6d-47a017fbc6e3\"\n },\n \"partner_source_data\": [\n {\n \"field_name\": \"Customer Status\",\n \"field_value\": \"Customer\"\n },\n {\n \"field_name\": \"Account Website\",\n \"field_value\": \"wayne.enterprises\"\n },\n {\n \"field_name\": \"Account Type\",\n \"field_value\": \"User\"\n },\n {\n \"field_name\": \"Account Name\",\n \"field_value\": \"Wayne Enterprises\"\n }\n ],\n \"partner_record_website\": \"wayne.enterprises\",\n \"partner_populations\": [\n {\n \"id\": 21035,\n \"name\": \"Prospects\"\n }\n ],\n \"crossbeam_record_id\": \"297d66ea-ca5c-9a98-93f0-a9205b7bbbee\",\n \"record_id\": \"002K5000002fEhvIAE\",\n \"record_name\": \"Wayne Inc.\",\n \"record_website\": \"wayne.enterprises.com\",\n \"record_email\": null,\n \"partner_record_type\": \"account\",\n \"partner_id\": \"03021d34-c211-4d41-8d32-eb9434fca1ef\",\n \"partner_record_name\": \"Wayne Enterprises\",\n \"partner_crossbeam_record_id\": \"85253548-752b-5a76-f987-77f0d9ed85dd\"\n },\n {\n \"partner_name\": \"Batman\",\n \"partner_logo_url\": \"https://image.logo/batman\",\n \"populations\": [\n {\n \"id\": 5230,\n \"name\": \"Customers\"\n },\n {\n \"id\": 6666,\n \"name\": \"Prospects\"\n },\n {\n \"id\": 14587,\n \"name\": \"Customers - Free\"\n }\n ],\n \"partner_owner\": {\n \"owner_name\": \"Alfred Pennyworth\",\n \"owner_email\": \"apennyworth@waynemanor.com\",\n \"owner_phone\": null,\n \"crossbeam_owner_id\": \"adabcf2c-4770-4c7c-9a0f-31416d02039c\"\n },\n \"partner_source_data\": [\n {\n \"field_name\": \"Customer Status\",\n \"field_value\": \"Customer\"\n },\n {\n \"field_name\": \"Account Website\",\n \"field_value\": \"waynemanor.com\"\n },\n {\n \"field_name\": \"Account Type\",\n \"field_value\": \"End User\"\n },\n {\n \"field_name\": \"Account Name\",\n \"field_value\": \"Wayne Manor\"\n },\n {\n \"field_name\": \"Industry\",\n \"field_value\": \"Hospitality\"\n }\n ],\n \"partner_record_website\": \"waynemanor.com\",\n \"partner_populations\": [\n {\n \"id\": 21034,\n \"name\": \"Customers\"\n },\n {\n \"id\": 21035,\n \"name\": \"Prospects\"\n },\n {\n \"id\": 28337,\n \"name\": \"Open Opportunities\"\n }\n ],\n \"crossbeam_record_id\": \"297d66ea-as8a-5b37-93f0-a9205b7bbbee\",\n \"record_id\": \"002K5000002fEhvIAE\",\n \"record_name\": \"Wayne Manor Inc.\",\n \"record_website\": \"waynemanor.com\",\n \"record_email\": null,\n \"partner_record_type\": \"account\",\n \"partner_id\": \"a58669b0-799d-4ac4-8a8a-c93bb043d25d\",\n \"partner_record_name\": \"Wayne Manor\",\n \"partner_crossbeam_record_id\": \"0b4313d4-52d4-5d50-a98f-090872a4ded3\"\n }\n ]\n}"}],"_postman_id":"a72d6ef2-9122-4836-97e8-4cd16153905c"},{"name":"/v1/overlaps/leads","id":"88e422f8-5c45-4afe-bd27-86ab97c433c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/overlaps/leads","description":"

Description

\n

This route returns all records of yours that overlap with a partner's leads. Your side of the overlap is not necessarily a lead. It also provides corresponding information about that partner, such as their organization information and their populations in which your record was matched.

\n

Each call returns a top-level items array described in the example below. It also returns a top-level pagination object which gives you information about how to collect all the information via pagination.

\n

This endpoint can be bookmarked using the cursor returned in pagination. See /v1/overlaps/ above for more information.

\n

Query Parameters

\n
    \n
  • limit : How many records to return. Default if not provided is 25. Maximum is 1000.

    \n
  • \n
  • population-ids[]: Which of your own populations to include in the overlaps. Can be used multiple times for multiple populations e.g. ?population-ids[]=1&population-ids[]=42

    \n
  • \n
  • partner-id: Limits the results to overlaps with a specific partner

    \n
  • \n
  • cursor: As described in the pagination section, use this to get the next records.

    \n
  • \n
\n

⚠️ Changing query parameters invalidates the cursor

\n

If you have a stored cursor and want to change the query parameters for your next call, using that cursor will NOT accurately track changes! However, the endpoint will still return results.

\n

You need to restart with no cursor to start accurately tracking changes with your new query params.

\n

Scopes

\n
    \n
  • read:reports
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","overlaps","leads"],"host":["https://api.crossbeam.com"],"query":[],"variable":[]}},"response":[{"id":"c31a4f98-9c34-4536-b5f2-d428f5af1b94","name":"/v1/overlaps/leads","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/overlaps/leads"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.19.3"},{"key":"Date","value":"Tue, 30 Mar 2021 14:36:45 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"18375"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"https://app.xbeam.dev1"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n \"pagination\": {\n \"next_cursor\": \"eyJsYXN0LW1hc3Rlci11dWlkIjoiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIiwibGFzdC1wYXJ0bmVyLW1hc3Rlci11dWlkIjoiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIiwibGFzdC1wYXJ0bmVyLWlkIjozOTcsInRpbWUtc2xpY2Utc3RhcnQiOiIyMDIzLTA0LTA1VDE1OjEzOjAyLjA2NyswMDowMCJ9\",\n \"has_more\": false,\n \"next_href\": \"https://api.crossbeam.com/v1/overlaps/leads?limit=25&cursor=eyJsYXN0LW1hc3Rlci11dWlkIjoiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIiwibGFzdC1wYXJ0bmVyLW1hc3Rlci11dWlkIjoiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIiwibGFzdC1wYXJ0bmVyLWlkIjozOTcsInRpbWUtc2xpY2Utc3RhcnQiOiIyMDIzLTA0LTA1VDE1OjEzOjAyLjA2NyswMDowMCJ9\"\n },\n \"data\": [\n {\n \"partner_name\": \"Justice League, Inc.\",\n \"partner_logo_url\": null,\n \"partner_record_email\": \"alfred@wayne.enterprises.com\",\n \"partner_crossbeam_record_id\": \"188f1978-a673-59d2-920c-61ec988872d5\",\n \"populations\": [\n {\n \"id\": 12684,\n \"name\": \"Prospects\"\n }\n ],\n \"partner_owner\": {\n \"owner_name\": \"Clark Kent\",\n \"owner_email\": \"ckent@justice-league.com\",\n \"owner_phone\": null,\n \"crossbeam_owner_id\": \"4d524210-43fa-4ca7-9c6d-47a017fbc6e3\"\n },\n \"partner_source_data\": [\n {\n \"field_name\": \"Lead Title\",\n \"field_value\": \"General Partner\"\n },\n {\n \"field_name\": \"Lead Phone\",\n \"field_value\": \"(862)422-5800x7955\"\n },\n {\n \"field_name\": \"Lead Name\",\n \"field_value\": \"Alfred Pennyworth\"\n },\n {\n \"field_name\": \"Lead Email\",\n \"field_value\": \"alfred@wayne.enterprises.com\"\n },\n {\n \"field_name\": \"Lead Created At\",\n \"field_value\": \"2021-05-12T21:22:38+00:00\"\n }\n ],\n \"is_deleted\": false,\n \"partner_populations\": [\n {\n \"id\": 6565,\n \"name\": \"Prospects\"\n }\n ],\n \"crossbeam_record_id\": \"9a9deb52-5444-5788-9c6c-73bd320455cc\",\n \"record_id\": \"6967336019\",\n \"record_name\": \"Wayne Inc.\",\n \"record_website\": \"wayne.enterprises.com\",\n \"record_email\": null,\n \"partner_record_type\": \"lead\",\n \"partner_id\": \"03021d34-c211-4d41-8d32-eb9434fca1ef\"\n }\n ]\n}"}],"_postman_id":"88e422f8-5c45-4afe-bd27-86ab97c433c0"},{"name":"/v1/overlaps/leads/search","id":"adbb476f-ae17-4e4b-b736-22b796cbbeeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/overlaps/leads/search","description":"

Description

\n

This route returns all records of yours that match the given search term and that overlap with a partner's lead. It also provides corresponding information about that partner, such as their organization information and their populations in which your record was matched.

\n

This endpoint is not paged.

\n

Scopes

\n
    \n
  • read:reports
  • \n
\n

Query Parameters

\n
    \n
  • term : Fuzzy prefixed based matching: \"Alfred\" matches both \"alfred@wayne.enterprises.com\" and \"alfred@wayne.manor.com\"

    \n
  • \n
  • record_id: Exact matching based on record_id

    \n
  • \n
  • email: Exact matching based on email

    \n
  • \n
  • partner-population-ids[]: Which of your partner's populations to include in the overlaps. Can be used multiple times for multiple populations e.g. ?partner-population-ids[]=1&partner-population-ids[]=42

    \n
  • \n
  • partner-id: Limits the results to overlaps with a specific partner

    \n
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","overlaps","leads","search"],"host":["https://api.crossbeam.com"],"query":[],"variable":[]}},"response":[{"id":"10294f34-4de1-476f-a916-569669beda29","name":"/v1/overlaps/leads?search","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":{"raw":"https://api.crossbeam.com/v1/overlaps/leads/search?term=alfred","host":["https://api.crossbeam.com"],"path":["v1","overlaps","leads","search"],"query":[{"key":"term","value":"alfred"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.19.3"},{"key":"Date","value":"Tue, 30 Mar 2021 14:36:45 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"18375"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"https://app.xbeam.dev1"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"partner_name\": \"Justice League, Inc.\",\n \"partner_logo_url\": null,\n \"partner_record_email\": \"alfred@wayne.enterprises.com\",\n \"partner_crossbeam_record_id\": \"188f1978-a673-59d2-920c-61ec988872d5\",\n \"populations\": [\n {\n \"id\": 12684,\n \"name\": \"Prospects\"\n }\n ],\n \"partner_owner\": {\n \"owner_name\": \"Clark Kent\",\n \"owner_email\": \"ckent@justice-league.com\",\n \"owner_phone\": null,\n \"crossbeam_owner_id\": \"4d524210-43fa-4ca7-9c6d-47a017fbc6e3\"\n },\n \"partner_source_data\": [\n {\n \"field_name\": \"Lead Title\",\n \"field_value\": \"General Partner\"\n },\n {\n \"field_name\": \"Lead Phone\",\n \"field_value\": \"(862)422-5800x7955\"\n },\n {\n \"field_name\": \"Lead Name\",\n \"field_value\": \"Alfred Pennyworth\"\n },\n {\n \"field_name\": \"Lead Email\",\n \"field_value\": \"alfred@wayne.enterprises.com\"\n },\n {\n \"field_name\": \"Lead Created At\",\n \"field_value\": \"2021-05-12T21:22:38+00:00\"\n }\n ],\n \"is_deleted\": false,\n \"partner_populations\": [\n {\n \"id\": 6565,\n \"name\": \"Prospects\"\n }\n ],\n \"crossbeam_record_id\": \"9a9deb52-5444-5788-9c6c-73bd320455cc\",\n \"record_id\": \"6967336019\",\n \"partner_record_type\": \"lead\",\n \"partner_id\": \"03021d34-c211-4d41-8d32-eb9434fca1ef\"\n }\n ]\n}"}],"_postman_id":"adbb476f-ae17-4e4b-b736-22b796cbbeeb"},{"name":"/v1/signals/*","id":"e39457e9-f4ae-4f0f-93bc-16d3073d53e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","description":"

Understanding Signals

\n

A signal is a data point or behavioral indicator that suggests an opportunity, risk, or next step.

\n

Signals help teams act on what's happening across the ecosystem.

\n

The signals we currently have are based directly off of changes in your partners' CRM data. Specifically, changes in opportunity data. When one of your partners opens or closes a deal, Crossbeam generates a signal.

\n

The signals visible to you through your partners' sharing settings are exposed in these signals endpoints.

\n

Your partner needs to be syncing and sharing the following fields:

\n
    \n
  • Deal open date

    \n
  • \n
  • Deal close date

    \n
  • \n
  • Deal is closed

    \n
  • \n
  • Deal is won

    \n
  • \n
\n

The signals endpoint returns shared data about the partner deal record the signal occurred on and relevant data about the signal itself.

\n

Explanation of Fields

\n
    \n
  • event_id - a unique identifier of the signal

    \n
  • \n
  • event_type - what caused the signal to happen

    \n
  • \n
  • triggered_at - the time the signal event occurred

    \n
  • \n
  • record_name - the name of the record in your CRM the signal relates to

    \n
  • \n
  • record_type - is your own record an account or lead (this is redundant on the endpoint, but is included to match the body sent by the webhook)

    \n
  • \n
  • record_id - the ID of the record in your CRM the signal relates to

    \n
  • \n
  • populations and partner_populations - a list of the Crossbeam populations this record was in at the time just after the signal occurred. For example, if your partner had an account in an \"Open Opportunities\" population and closed a deal on that account causing it to now fit the definition of \"Customers\" only, partner_populations would include \"Customers\" and not \"Open Opportunities\"

    \n
  • \n
  • partner_name - the name of the partner involved in this signal

    \n
  • \n
  • partner_id - the ID (uuid) of the partner involved in this signal

    \n
  • \n
  • partner_data - a map with shared data on the partner's deal that caused this signal. Can include fields is_closed, is_won, open_date, close_date, stage, name

    \n
  • \n
\n

See the examples for realistic responses and to understand the response schema.

\n

Pagination and Bookmarking

\n

Pagination is controlled with the cursor query parameter. Within the pagination property, you find a map with the following:

\n
    \n
  • next_href : this value contains the URL needed for the next page of results. It includes the cursor and any other query parameters the endpoint was called with.

    \n
  • \n
  • next_cursor: this value contains the cursor to use to get the next page of results. In most cases, you should rely on next_href

    \n
  • \n
  • has_more: indicates if there are more records to page through. A value of false is the only definitive way to know there are no more records.

    \n
  • \n
\n

To bookmark this endpoint, the next_cursor can be stored after a full sync.

\n

This bookmark simply tracks signals that have been created since the last sync: it returns all new signals. If \"partner deal name\" has changed since the last call, that signal will NOT be returned in a subsequent call with the bookmark.

\n

Scopes

\n
    \n
  • read:reports
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"e39457e9-f4ae-4f0f-93bc-16d3073d53e2"},{"name":"/v1/signals/accounts","id":"92cbd9d7-d18a-44d2-9e12-8fa357353dcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/signals/accounts","description":"

Description

\n

This route returns all signals the where your side of the overlap is an account.

\n

Each call returns a top-level items array described in the example below. It also returns a top-level pagination object which gives you information about how to collect all the information via pagination.

\n

This endpoint can be bookmarked using the cursor returned in pagination. See /v1/signals/* above for more information.

\n

Query Parameters

\n
    \n
  • limit : how many records to return. The fefault if not provided is 25. The maximum is 1000.

    \n
  • \n
  • record_id: only include signals on this specific record. Can be used multiple times for multiple records e.g. ?record_id=\"abc123\"&record_id=\"def456\"

    \n
  • \n
  • population_id: only include signals on records which are a part of the provided population. Note that in the populations field in the response we show all populations that record is included in, regardless of this filter. Can be used multiple times for multiple populations e.g. ?population_id=1&population_id=42

    \n
  • \n
  • partner_id: limits the results to signals involving a specific partner. Can be used multiple times for multiple partners e.g. ?partner_id=10&partner_id=100

    \n
  • \n
  • partner_population_id: only include signals involving a specific partner population. Note that in the partner_populations field in the response we show all partner populations that record is included in, regardless of this filter. Can be used multiple times for multiple populations e.g. ?partner_population_id=11&population_id=43

    \n
  • \n
  • triggered_at[gt|gte|lt|lte|eq]: uses left-hand side style operators to get filter signals based on the provided triggered_at. The parameter should be a datetime: \"2025-10-15T14:59:06.347Z\". Example:
    triggered_at[lt]=\"2025-10-15T00:00:00.000Z\" retrieves signals triggered before October 15 of 2025 in UTC.

    \n
  • \n
  • cursor: As described in the pagination section, use this to get the next records

    \n
  • \n
\n

Scopes

\n
    \n
  • read:reports
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","signals","accounts"],"host":["https://api.crossbeam.com"],"query":[],"variable":[]}},"response":[{"id":"3e321c9e-066a-4f0c-967e-7caf7c11749f","name":"/v1/signals/accounts","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.crossbeam.com/v1/signals/accounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.19.3"},{"key":"Date","value":"Tue, 30 Mar 2021 14:36:45 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"18375"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"https://app.xbeam.dev1"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"event_id\": \"044dd457-db4b-52e5-acff-562acea785b4\",\n \"event_type\": \"partner_deal_closed_won\",\n \"triggered_at\": \"2025-10-028T16:00:00.103+00:00\",\n \"record_type\": \"account\",\n \"record_id\": \"002K5000002fEhvIAE\",\n \"record_name\": \"Wayne Inc.\",\n \"partner_id\": \"9ca31720-d8c8-4620-85bb-354091f01dd9\",\n \"partner_name\": \"Justice League, Inc.\",\n \"populations\": [\n {\n \"id\": 1234,\n \"name\": \"Customers\",\n \"segment\": \"customers\"\n },\n {\n \"id\": 1235,\n \"name\": \"Prospects\",\n \"segment\": \"prospects\"\n },\n {\n \"id\": 1984,\n \"name\": \"Customers - Free\",\n \"segment\": \"customers\"\n }\n ],\n \"partner_data\": {\n \"deal\": {\n \"close_date\": \"2025-10-31T00:00:00.000+00:00\",\n \"open_date\": \"2025-10-01T15:55:54.000+00:00\",\n \"name\": \"Batmobile\",\n \"is_closed\": true,\n \"is_won\": true,\n \"stage\": \"Closed Won\"\n }\n },\n \"partner_populations\": [\n {\n \"id\": 14,\n \"name\": \"Customers\",\n \"segment\": \"customers\"\n },\n {\n \"id\": 25,\n \"name\": \"Prospects\",\n \"segment\": \"prospects\"\n }\n ]\n },\n {\n \"event_id\": \"b44bb0b5-d0d1-51e8-ba65-dd365d1c8599\",\n \"event_type\": \"partner_deal_opened\",\n \"triggered_at\": \"2025-10-24T13:00:00.103+00:00\",\n \"record_type\": \"account\",\n \"record_id\": \"0015Y00007JeVJKQA3\",\n \"record_name\": \"Stark Inc.\",\n \"partner_id\": \"a58669b0-799d-4ac4-8a8a-c93bb043d25d\",\n \"partner_name\": \"Stark Enterprises\",\n \"populations\": [\n {\n \"id\": 1234,\n \"name\": \"Customers\",\n \"segment\": \"customers\"\n },\n {\n \"id\": 1235,\n \"name\": \"Prospects\",\n \"segment\": \"prospects\"\n },\n {\n \"id\": 1984,\n \"name\": \"Customers - Free\",\n \"segment\": \"customers\"\n }\n ],\n \"partner_data\": {\n \"deal\": {\n \"close_date\": \"2025-10-31T00:00:00.000+00:00\",\n \"open_date\": \"2025-10-24T12:55:54.000+00:00\",\n \"name\": \"Arc Reactor\",\n \"is_closed\": false,\n \"is_won\": false,\n \"stage\": \"Value Proposition\"\n }\n },\n \"partner_populations\": [\n {\n \"id\": 28337,\n \"name\": \"Open Opportunities\",\n \"segment\": \"open_opportunities\"\n }\n ]\n }\n ],\n \"pagination\": {\n \"has_more\": true,\n \"next_href\": \"https://api.crossbeam.com/v1/signals/accounts?limit=25&cursor=eyJ0aW1lLXNsaWNlLXN0YXJ0IjoiMjAyNS0xMC0yOFQxODo1NjoxMS42NTArMDA6MDAiLCJsYXN0LWV2ZW50LXV1aWQiOiIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAifQ==\",\n \"next_cursor\": \"eyJ0aW1lLXNsaWNlLXN0YXJ0IjoiMjAyNS0xMC0yOFQxODo1NjoxMS42NTArMDA6MDAiLCJsYXN0LWV2ZW50LXV1aWQiOiIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAifQ==\"\n }\n}"}],"_postman_id":"92cbd9d7-d18a-44d2-9e12-8fa357353dcb"},{"name":"/v1/signals/leads","id":"9dc0c1d1-b4df-4631-b2ea-9ed62a650ddd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""}],"url":"https://api.crossbeam.com/v1/signals/leads","description":"

Description

\n

This route returns all signals the where your side of the overlap is an lead.

\n

Each call returns a top-level items array described in the example below. It also returns a top-level pagination object which gives you information about how to collect all the information via pagination.

\n

This endpoint can be bookmarked using the cursor returned in pagination. See /v1/signals/\\* above for more information.

\n

Query Parameters

\n
    \n
  • limit : how many records to return. The fefault if not provided is 25. The maximum is 1000.

    \n
  • \n
  • record_id: only include signals on this specific record. Can be used multiple times for multiple records e.g. ?record_id=\"abc123\"&record_id=\"def456\"

    \n
  • \n
  • population_id: only include signals on records which are a part of the provided population. Note that in the populations field in the response we show all populations that record is included in, regardless of this filter. Can be used multiple times for multiple populations e.g. ?population_id=1&population_id=42

    \n
  • \n
  • partner_id: limits the results to signals involving a specific partner. Can be used multiple times for multiple partners e.g. ?partner_id=10&partner_id=100

    \n
  • \n
  • partner_population_id: only include signals involving a specific partner population. Note that in the partner_populations field in the response we show all partner populations that record is included in, regardless of this filter. Can be used multiple times for multiple populations e.g. ?partner_population_id=11&population_id=43

    \n
  • \n
  • triggered_at[gt|gte|lt|lte|eq]: uses left-hand side style operators to get filter signals based on the provided triggered_at. The parameter should be a datetime: \"2025-10-15T14:59:06.347Z\". Example:
    triggered_at[lt]=\"2025-10-15T00:00:00.000Z\" retrieves signals triggered before October 15 of 2025 in UTC.

    \n
  • \n
  • cursor: As described in the pagination section, use this to get the next records

    \n
  • \n
\n

Scopes

\n
    \n
  • read:reports
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","signals","leads"],"host":["https://api.crossbeam.com"],"query":[],"variable":[]}},"response":[{"id":"88019fed-13a3-4619-816d-36daf7ec4f48","name":"/v1/signals/leads","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive"},{"key":"Accept","value":"application/json"},{"key":"Xbeam-Organization","value":""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.crossbeam.com/v1/signals/leads"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.19.3"},{"key":"Date","value":"Tue, 30 Mar 2021 14:36:45 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"18375"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"https://app.xbeam.dev1"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"event_id\": \"044dd457-db4b-52e5-acff-562acea785b4\",\n \"event_type\": \"partner_deal_opened\",\n \"triggered_at\": \"2025-10-028T16:00:00.103+00:00\",\n \"record_type\": \"lead\",\n \"record_id\": \"002K5000002fEhvIAE\",\n \"record_name\": \"alfred@wayne.enterprises.com\",\n \"partner_id\": \"9ca31720-d8c8-4620-85bb-354091f01dd9\",\n \"partner_name\": \"Justice League, Inc.\",\n \"populations\": [\n\n {\n \"id\": 1235,\n \"name\": \"Prospects\",\n \"segment\": \"prospects\"\n }\n ],\n \"partner_data\": {\n \"deal\": {\n \"close_date\": \"2025-10-31T00:00:00.000+00:00\",\n \"open_date\": \"2025-10-01T15:55:54.000+00:00\",\n \"name\": \"Special Suit\",\n \"is_closed\": false,\n \"is_won\": false,\n \"stage\": \"Prospecting\"\n }\n },\n \"partner_populations\": [\n {\n \"id\": 28337,\n \"name\": \"Open Opportunities\",\n \"segment\": \"open_opportunities\"\n }\n ]\n }\n ],\n \"pagination\": {\n \"has_more\": true,\n \"next_href\": \"https://api.crossbeam.com/v1/signals/accounts?limit=25&cursor=eyJ0aW1lLXNsaWNlLXN0YXJ0IjoiMjAyNS0xMC0yOFQxODo1NjoxMS42NTArMDA6MDAiLCJsYXN0LWV2ZW50LXV1aWQiOiIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAifQ==\",\n \"next_cursor\": \"eyJ0aW1lLXNsaWNlLXN0YXJ0IjoiMjAyNS0xMC0yOFQxODo1NjoxMS42NTArMDA6MDAiLCJsYXN0LWV2ZW50LXV1aWQiOiIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAifQ==\"\n }\n}"}],"_postman_id":"9dc0c1d1-b4df-4631-b2ea-9ed62a650ddd"},{"name":"/v1/signals/own-deals","id":"e0f3a4f4-21ca-42b9-b794-eaea10a425dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Connection","value":"keep-alive","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Xbeam-Organization","value":"","type":"text"}],"url":"https://api.crossbeam.com/v1/signals/own-deals","description":"

Description

\n

Returns own-direction deal signals as per-overlap rows: one signal per partner overlap on your open/closed-won deals. Each row carries a unique signal_id and a shared event_id (group by event_id to reconstruct the aggregated shape). Bookmarked/paginated with a cursor. Requires the read:reports scope.

\n

Query Parameters

\n
    \n
  • limit : how many records to return. The default if not provided is 25. The maximum is 1000.

    \n
  • \n
  • record_id: only include signals on this specific record. Can be used multiple times for multiple records e.g. ?record_id=\"abc123\"&record_id=\"def456\"

    \n
  • \n
  • population_id: only include signals on records which are part of the provided population. Note that the populations field in the response shows all populations that record is included in, regardless of this filter. Can be used multiple times e.g. ?population_id=1&population_id=42

    \n
  • \n
  • partner_id: limits the results to signals involving a specific partner. Can be used multiple times e.g. ?partner_id=10&partner_id=100

    \n
  • \n
  • partner_population_id: only include signals involving a specific partner population. Can be used multiple times e.g. ?partner_population_id=11&partner_population_id=43

    \n
  • \n
  • event_type: only include signals of this type. Valid values: own_deal_opened, own_deal_closed_won. Can be used multiple times e.g. ?event_type=own_deal_opened&event_type=own_deal_closed_won

    \n
  • \n
  • triggered_at[gt|gte|lt|lte|eq]: uses left-hand side style operators to filter signals based on the provided triggered_at. The parameter should be a datetime: \"2025-10-15T14:59:06.347Z\". Example: triggered_at[lt]=\"2025-10-15T00:00:00.000Z\" retrieves signals triggered before October 15 of 2025 in UTC.

    \n
  • \n
  • cursor: As described in the pagination section, use this to get the next records.

    \n
  • \n
\n

Scopes

\n
    \n
  • read:reports
  • \n
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","id":"c318cee6-1c7c-4307-a1c4-57f30ebf71cf","name":"Crossbeam Partner API","type":"collection"}},"urlObject":{"path":["v1","signals","own-deals"],"host":["https://api.crossbeam.com"],"query":[],"variable":[]}},"response":[{"id":"02c3fca3-bb5b-402d-a779-0ec98e177d7f","name":"/v1/signals/own-deals","originalRequest":{"method":"GET","header":[{"key":"Connection","value":"keep-alive","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Xbeam-Organization","value":"","type":"text"}],"url":"https://api.crossbeam.com/v1/signals/own-deals"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n \"data\": [\n {\n \"event_id\": \"8f3b2c10-4d5e-4a6b-9c7d-0e1f2a3b4c5d\",\n \"signal_id\": \"d4e5f6a7-1122-4b33-8c44-556677889900\",\n \"triggered_at\": \"2026-06-30T14:22:05.000+00:00\",\n \"event_type\": \"own_deal_closed_won\",\n \"record_type\": \"account\",\n \"record_id\": \"0018c00002AbCdEfGHI\",\n \"record_name\": \"Acme Corp\",\n \"record_domain\": \"acme.com\",\n \"populations\": [\n { \"id\": 1234, \"name\": \"Customers\", \"segment\": \"customers\" }\n ],\n \"deal\": {\n \"name\": \"Acme - Platform Expansion\",\n \"type\": \"Expansion\",\n \"amount_in_usd\": 48000.0,\n \"open_date\": \"2026-05-01T00:00:00.000+00:00\",\n \"close_date\": \"2026-06-30T00:00:00.000+00:00\",\n \"stage\": \"Closed Won\",\n \"is_closed\": true,\n \"is_won\": true,\n \"owner\": { \"name\": \"Dana Rep\", \"email\": \"dana@yourco.com\" }\n },\n \"partner_id\": \"9ca31720-d8c8-4620-85bb-354091f01dd9\",\n \"partner_name\": \"Justice League, Inc.\",\n \"partner_account\": {\n \"name\": \"Acme Corporation\",\n \"domain\": \"acme.com\",\n \"populations\": [\n { \"id\": 5, \"name\": \"Open Opportunities\", \"segment\": \"prospects\" }\n ],\n \"contacts\": [\n {\n \"name\": \"Jordan Buyer\",\n \"email\": \"jordan@acme.com\",\n \"phone\": \"+1-555-0100\",\n \"role_name\": \"Economic Buyer\"\n }\n ]\n }\n }\n ],\n \"pagination\": {\n \"has_more\": true,\n \"next_href\": \"https://api.crossbeam.com/v1/signals/opportunities?limit=25&cursor=eyJ0aW1lLXNsaWNlLXN0YXJ0IjoiMjAyNi0wNi0zMFQxNDoyMjowNS4wMDArMDA6MDAiLCJsYXN0LWV2ZW50LXV1aWQiOiIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAifQ==\",\n \"next_cursor\": \"eyJ0aW1lLXNsaWNlLXN0YXJ0IjoiMjAyNi0wNi0zMFQxNDoyMjowNS4wMDArMDA6MDAiLCJsYXN0LWV2ZW50LXV1aWQiOiIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAifQ==\"\n }\n}"}],"_postman_id":"e0f3a4f4-21ca-42b9-b794-eaea10a425dd"}],"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"useBrowser","value":""},{"key":"authUrl","value":"https://auth.crossbeam.com/authorize?audience=https://api.getcrossbeam.com"},{"key":"redirect_uri","value":""},{"key":"scope","value":"openid read:populations read:threads read:partners read:partnerships read:reports offline_access"},{"key":"accessTokenUrl","value":"https://auth.crossbeam.com/oauth/token"},{"key":"tokenName","value":""},{"key":"clientSecret","value":""},{"key":"clientId","value":""},{"key":"challengeAlgorithm","value":""},{"key":"grant_type","value":""},{"key":"client_authentication","value":""},{"key":"tokenType","value":""}]}},"event":[{"listen":"prerequest","script":{"id":"d16b31a4-085e-4eb7-9b0f-6cb4b94b5d41","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5d00f2d8-1636-43c3-9f2b-10ae95d15986","type":"text/javascript","exec":[""]}}],"variable":[{"id":"7d869416-e8cf-455f-9785-254dac1ac259","key":"client_id","value":""},{"id":"4efad890-8490-49bd-879e-40cafd711a5e","key":"client_secret","value":""},{"id":"b36c1290-f970-4804-825c-dc98c2f6a2ab","key":"base_api_url","value":""},{"id":"44ee7939-322f-4fdd-91fc-20a666ac0251","key":"audience","value":""},{"id":"3067d9a1-ea3b-4170-be32-3ac2e1eb0ec0","key":"base_auth_url","value":""},{"id":"e7169153-ce26-4940-b4af-47da237bb8dc","key":"auth_url","value":""},{"id":"9e0b3fad-9022-429f-88b1-2cb0d3fcc75b","key":"access_token_url","value":""},{"id":"ac88ab11-1617-49c4-bf12-ad9eb03758e2","key":"scope","value":""},{"id":"dea01e57-3495-4c3b-b6aa-92955f3829fb","key":"xbeam_organization","value":"","disabled":true}]}