<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Creating deals using v3 api specifying a custom pipeline and stage in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Creating-deals-using-v3-api-specifying-a-custom-pipeline-and/m-p/1014492#M75237</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/574751"&gt;@ELH&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you create a deal in HubSpot using the API you are required to specify the "pipeline" and "dealstage" in your request body. You can retrieve all of the deal pipelines (and their stages) by calling &lt;A href="https://developers.hubspot.com/beta-docs/reference/api/crm/pipelines#get-%2Fcrm%2Fv3%2Fpipelines%2F%7Bobjecttype%7D" target="_blank" rel="noopener"&gt;this endpoint&lt;/A&gt;. This will then show you the possible values you can use when creating your deal via &lt;A href="https://developers.hubspot.com/beta-docs/reference/api/crm/objects/deals#post-%2Fcrm%2Fv3%2Fobjects%2Fdeals" target="_blank" rel="noopener"&gt;this endpoint&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For instance, when I retreieve all of the deal pipelines in my portal I receive the below:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;GET https://api.hubapi.com/crm/v3/pipelines/deals
Headers: Authorization Bearer {{token}}
Response:
{
    "results": [
        {
            "label": "Renewals Pipeline",
            "displayOrder": 1,
            "id": "457553644",
            "stages": [
                {
                    "label": "Appointment Scheduled",
                    "displayOrder": 0,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.2"
                    },
                    "id": "701459927",
                    "createdAt": "2024-07-23T09:40:52.693Z",
                    "updatedAt": "2024-07-23T09:40:52.693Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Qualified To Buy",
                    "displayOrder": 1,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.4"
                    },
                    "id": "701459928",
                    "createdAt": "2024-07-23T09:40:52.693Z",
                    "updatedAt": "2024-07-23T09:40:52.693Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Presentation Scheduled",
                    "displayOrder": 2,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.6"
                    },
                    "id": "701459929",
                    "createdAt": "2024-07-23T09:40:52.693Z",
                    "updatedAt": "2024-07-23T09:40:52.693Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Decision Maker Bought-In",
                    "displayOrder": 3,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.8"
                    },
                    "id": "701459930",
                    "createdAt": "2024-07-23T09:40:52.693Z",
                    "updatedAt": "2024-07-23T09:40:52.693Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Contract Sent",
                    "displayOrder": 4,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.9"
                    },
                    "id": "701459931",
                    "createdAt": "2024-07-23T09:40:52.693Z",
                    "updatedAt": "2024-07-23T09:40:52.693Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Closed Won",
                    "displayOrder": 5,
                    "metadata": {
                        "isClosed": "true",
                        "probability": "1.0"
                    },
                    "id": "701459932",
                    "createdAt": "2024-07-23T09:40:52.693Z",
                    "updatedAt": "2024-07-23T09:40:52.693Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Closed Lost",
                    "displayOrder": 6,
                    "metadata": {
                        "isClosed": "true",
                        "probability": "0.0"
                    },
                    "id": "701459933",
                    "createdAt": "2024-07-23T09:40:52.693Z",
                    "updatedAt": "2024-07-23T09:40:52.693Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                }
            ],
            "createdAt": "2024-07-23T09:40:52.693Z",
            "updatedAt": "2024-07-23T09:40:52.693Z",
            "archived": false
        },
        {
            "label": "Sales Pipeline",
            "displayOrder": 0,
            "id": "default",
            "stages": [
                {
                    "label": "Appointment Scheduled",
                    "displayOrder": 0,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.2"
                    },
                    "id": "appointmentscheduled",
                    "createdAt": "1970-01-01T00:00:00Z",
                    "updatedAt": "1970-01-01T00:00:00Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Qualified To Buy",
                    "displayOrder": 1,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.4"
                    },
                    "id": "qualifiedtobuy",
                    "createdAt": "1970-01-01T00:00:00Z",
                    "updatedAt": "1970-01-01T00:00:00Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Presentation Scheduled",
                    "displayOrder": 2,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.6"
                    },
                    "id": "presentationscheduled",
                    "createdAt": "1970-01-01T00:00:00Z",
                    "updatedAt": "1970-01-01T00:00:00Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Decision Maker Bought-In",
                    "displayOrder": 3,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.8"
                    },
                    "id": "decisionmakerboughtin",
                    "createdAt": "1970-01-01T00:00:00Z",
                    "updatedAt": "1970-01-01T00:00:00Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Contract Sent",
                    "displayOrder": 4,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.9"
                    },
                    "id": "contractsent",
                    "createdAt": "1970-01-01T00:00:00Z",
                    "updatedAt": "1970-01-01T00:00:00Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Closed Won",
                    "displayOrder": 5,
                    "metadata": {
                        "isClosed": "true",
                        "probability": "1.0"
                    },
                    "id": "closedwon",
                    "createdAt": "1970-01-01T00:00:00Z",
                    "updatedAt": "1970-01-01T00:00:00Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Closed Lost",
                    "displayOrder": 6,
                    "metadata": {
                        "isClosed": "true",
                        "probability": "0.0"
                    },
                    "id": "closedlost",
                    "createdAt": "1970-01-01T00:00:00Z",
                    "updatedAt": "1970-01-01T00:00:00Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                }
            ],
            "createdAt": "1970-01-01T00:00:00Z",
            "updatedAt": "1970-01-01T00:00:00Z",
            "archived": false
        }
    ]
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Notice the "id" attribute returned for the various pipelines and the stages they contain. I can use these to&amp;nbsp;&lt;/P&gt;
&lt;P&gt;create a deal as per the following request:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;POST https://api.hubapi.com/crm/v3/objects/deals
Headers: Authorization Bearer {{token}}
Body:

{
    "properties": {
        "amount": 500,
        "dealname": "Deal X",
        "pipeline": "457553644",
        "dealstage": "701459928"
    }
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've recorded a video walkthrough of how you can achieve this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://share.vidyard.com/watch/yWkckuYM4Uj6byeGMFgsMC?" target="_blank" rel="noopener"&gt;Create a deal in a custom deal pipeline&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;Jack&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jul 2024 09:59:23 GMT</pubDate>
    <dc:creator>coldrickjack</dc:creator>
    <dc:date>2024-07-23T09:59:23Z</dc:date>
    <item>
      <title>Creating deals using v3 api specifying a custom pipeline and stage</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Creating-deals-using-v3-api-specifying-a-custom-pipeline-and/m-p/1014176#M75222</link>
      <description>&lt;P&gt;I'm trying to create a deal under a pipeline using the v3 api&amp;nbsp;and it works using the default pipeline with a payload like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;properties: {
  pipeline: 'default',
  dealstage: '111111111', // example dealStageId from the default pipeline
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but as soon as I try to create the deal under a different pipeline, I get an error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;properties: {
    pipeline: '6661342', // another pipelineId 
    dealstage: '2222222', // another dealstage from that pipelineId
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I get the message:&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Property values were not valid: {
  "isValid": false,
  "message": "2222222 is not a valid pipeline stage ID. Valid options are: pipelineId=default : [1111111, .... ]",
  "category":"VALIDATION_ERROR"
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;Like if I were trying to create it in the default pipeline.&lt;BR /&gt;Trying to list them trough this endpoint (v3):&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;crm&lt;BR /&gt;&lt;/SPAN&gt;.&lt;SPAN&gt;pipelines&lt;BR /&gt;&lt;/SPAN&gt;.&lt;SPAN&gt;pipelineApi&lt;BR /&gt;.getAll('deal')&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;SPAN&gt;I only see the the default one with all the stages. But using the interface I have multiple pipelines crated.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;Additional notes:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I'm migrating the versions and in the v1 works&lt;/LI&gt;&lt;LI&gt;Using the replica environment for our prod&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;Can someone point me what I maight be doing wrong?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've tried to list all ticket pipelines but it tells me that I d not have permissions to do that, how can I seeif that is not the mistake?&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 22 Jul 2024 20:59:07 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Creating-deals-using-v3-api-specifying-a-custom-pipeline-and/m-p/1014176#M75222</guid>
      <dc:creator>ELH</dc:creator>
      <dc:date>2024-07-22T20:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: Creating deals using v3 api specifying a custom pipeline and stage</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Creating-deals-using-v3-api-specifying-a-custom-pipeline-and/m-p/1014492#M75237</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/574751"&gt;@ELH&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you create a deal in HubSpot using the API you are required to specify the "pipeline" and "dealstage" in your request body. You can retrieve all of the deal pipelines (and their stages) by calling &lt;A href="https://developers.hubspot.com/beta-docs/reference/api/crm/pipelines#get-%2Fcrm%2Fv3%2Fpipelines%2F%7Bobjecttype%7D" target="_blank" rel="noopener"&gt;this endpoint&lt;/A&gt;. This will then show you the possible values you can use when creating your deal via &lt;A href="https://developers.hubspot.com/beta-docs/reference/api/crm/objects/deals#post-%2Fcrm%2Fv3%2Fobjects%2Fdeals" target="_blank" rel="noopener"&gt;this endpoint&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For instance, when I retreieve all of the deal pipelines in my portal I receive the below:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;GET https://api.hubapi.com/crm/v3/pipelines/deals
Headers: Authorization Bearer {{token}}
Response:
{
    "results": [
        {
            "label": "Renewals Pipeline",
            "displayOrder": 1,
            "id": "457553644",
            "stages": [
                {
                    "label": "Appointment Scheduled",
                    "displayOrder": 0,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.2"
                    },
                    "id": "701459927",
                    "createdAt": "2024-07-23T09:40:52.693Z",
                    "updatedAt": "2024-07-23T09:40:52.693Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Qualified To Buy",
                    "displayOrder": 1,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.4"
                    },
                    "id": "701459928",
                    "createdAt": "2024-07-23T09:40:52.693Z",
                    "updatedAt": "2024-07-23T09:40:52.693Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Presentation Scheduled",
                    "displayOrder": 2,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.6"
                    },
                    "id": "701459929",
                    "createdAt": "2024-07-23T09:40:52.693Z",
                    "updatedAt": "2024-07-23T09:40:52.693Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Decision Maker Bought-In",
                    "displayOrder": 3,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.8"
                    },
                    "id": "701459930",
                    "createdAt": "2024-07-23T09:40:52.693Z",
                    "updatedAt": "2024-07-23T09:40:52.693Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Contract Sent",
                    "displayOrder": 4,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.9"
                    },
                    "id": "701459931",
                    "createdAt": "2024-07-23T09:40:52.693Z",
                    "updatedAt": "2024-07-23T09:40:52.693Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Closed Won",
                    "displayOrder": 5,
                    "metadata": {
                        "isClosed": "true",
                        "probability": "1.0"
                    },
                    "id": "701459932",
                    "createdAt": "2024-07-23T09:40:52.693Z",
                    "updatedAt": "2024-07-23T09:40:52.693Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Closed Lost",
                    "displayOrder": 6,
                    "metadata": {
                        "isClosed": "true",
                        "probability": "0.0"
                    },
                    "id": "701459933",
                    "createdAt": "2024-07-23T09:40:52.693Z",
                    "updatedAt": "2024-07-23T09:40:52.693Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                }
            ],
            "createdAt": "2024-07-23T09:40:52.693Z",
            "updatedAt": "2024-07-23T09:40:52.693Z",
            "archived": false
        },
        {
            "label": "Sales Pipeline",
            "displayOrder": 0,
            "id": "default",
            "stages": [
                {
                    "label": "Appointment Scheduled",
                    "displayOrder": 0,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.2"
                    },
                    "id": "appointmentscheduled",
                    "createdAt": "1970-01-01T00:00:00Z",
                    "updatedAt": "1970-01-01T00:00:00Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Qualified To Buy",
                    "displayOrder": 1,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.4"
                    },
                    "id": "qualifiedtobuy",
                    "createdAt": "1970-01-01T00:00:00Z",
                    "updatedAt": "1970-01-01T00:00:00Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Presentation Scheduled",
                    "displayOrder": 2,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.6"
                    },
                    "id": "presentationscheduled",
                    "createdAt": "1970-01-01T00:00:00Z",
                    "updatedAt": "1970-01-01T00:00:00Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Decision Maker Bought-In",
                    "displayOrder": 3,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.8"
                    },
                    "id": "decisionmakerboughtin",
                    "createdAt": "1970-01-01T00:00:00Z",
                    "updatedAt": "1970-01-01T00:00:00Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Contract Sent",
                    "displayOrder": 4,
                    "metadata": {
                        "isClosed": "false",
                        "probability": "0.9"
                    },
                    "id": "contractsent",
                    "createdAt": "1970-01-01T00:00:00Z",
                    "updatedAt": "1970-01-01T00:00:00Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Closed Won",
                    "displayOrder": 5,
                    "metadata": {
                        "isClosed": "true",
                        "probability": "1.0"
                    },
                    "id": "closedwon",
                    "createdAt": "1970-01-01T00:00:00Z",
                    "updatedAt": "1970-01-01T00:00:00Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                },
                {
                    "label": "Closed Lost",
                    "displayOrder": 6,
                    "metadata": {
                        "isClosed": "true",
                        "probability": "0.0"
                    },
                    "id": "closedlost",
                    "createdAt": "1970-01-01T00:00:00Z",
                    "updatedAt": "1970-01-01T00:00:00Z",
                    "archived": false,
                    "writePermissions": "CRM_PERMISSIONS_ENFORCEMENT"
                }
            ],
            "createdAt": "1970-01-01T00:00:00Z",
            "updatedAt": "1970-01-01T00:00:00Z",
            "archived": false
        }
    ]
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Notice the "id" attribute returned for the various pipelines and the stages they contain. I can use these to&amp;nbsp;&lt;/P&gt;
&lt;P&gt;create a deal as per the following request:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;POST https://api.hubapi.com/crm/v3/objects/deals
Headers: Authorization Bearer {{token}}
Body:

{
    "properties": {
        "amount": 500,
        "dealname": "Deal X",
        "pipeline": "457553644",
        "dealstage": "701459928"
    }
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've recorded a video walkthrough of how you can achieve this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://share.vidyard.com/watch/yWkckuYM4Uj6byeGMFgsMC?" target="_blank" rel="noopener"&gt;Create a deal in a custom deal pipeline&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;Jack&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 09:59:23 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Creating-deals-using-v3-api-specifying-a-custom-pipeline-and/m-p/1014492#M75237</guid>
      <dc:creator>coldrickjack</dc:creator>
      <dc:date>2024-07-23T09:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: Creating deals using v3 api specifying a custom pipeline and stage</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Creating-deals-using-v3-api-specifying-a-custom-pipeline-and/m-p/1014586#M75240</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/426475"&gt;@coldrickjack&lt;/a&gt;&amp;nbsp;Thanks for the help!&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I ended up figuring the problem (and some other that I had). It was related with few things:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;permissions&lt;/STRONG&gt;: checking the permissions of the Integration Token.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;sync&lt;/STRONG&gt;: As we had different environments, some of the attributes giving problems were not synced in the replica environments.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;envs token&lt;/STRONG&gt;: make sure you are pointing to the right environment.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 12:41:43 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Creating-deals-using-v3-api-specifying-a-custom-pipeline-and/m-p/1014586#M75240</guid>
      <dc:creator>ELH</dc:creator>
      <dc:date>2024-07-23T12:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: Creating deals using v3 api specifying a custom pipeline and stage</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Creating-deals-using-v3-api-specifying-a-custom-pipeline-and/m-p/1014934#M75254</link>
      <description>&lt;P&gt;Hey, &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/574751"&gt;@ELH&lt;/a&gt;&lt;/SPAN&gt; &lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; Thank you very much for taking the time to let us know what worked for you. — Jaycee&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 21:01:26 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Creating-deals-using-v3-api-specifying-a-custom-pipeline-and/m-p/1014934#M75254</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2024-07-23T21:01:26Z</dc:date>
    </item>
  </channel>
</rss>

