Skip to content

Commit 33ebd78

Browse files
author
AWS
committed
Partner Central Selling API Update: Added support for filtering opportunities by target close date in the ListOpportunities API. You can now filter results to return opportunities with a target close date before or after a specified date, enabling more precise opportunity searches based on expected closure timelines.
1 parent 302aa7b commit 33ebd78

2 files changed

Lines changed: 27 additions & 2 deletions

File tree

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Partner Central Selling API",
4+
"contributor": "",
5+
"description": "Added support for filtering opportunities by target close date in the ListOpportunities API. You can now filter results to return opportunities with a target close date before or after a specified date, enabling more precise opportunity searches based on expected closure timelines."
6+
}

services/partnercentralselling/src/main/resources/codegen-resources/service-2.json

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2193,7 +2193,7 @@
21932193
},
21942194
"Invitation":{
21952195
"shape":"Invitation",
2196-
"documentation":"<p> The <code>Invitation</code> object all information necessary to initiate an engagement invitation to a partner. It contains a personalized message from the sender, the invitation's receiver, and a payload. The <code>Payload</code> can be the <code>OpportunityInvitation</code>, which includes detailed structures for sender contacts, partner responsibilities, customer information, and project details. </p>"
2196+
"documentation":"<p> The <code>Invitation</code> object all information necessary to initiate an engagement invitation to a partner. It contains a personalized message from the sender, the invitation's receiver, and a payload. The <code>Payload</code> can be the <code>OpportunityInvitation</code>, which includes detailed structures for sender contacts, partner responsibilities, customer information, and project details, or <code>LeadInvitation</code>, which includes structures for customer information and interaction details. </p>"
21972197
}
21982198
}
21992199
},
@@ -4828,6 +4828,10 @@
48284828
"CreatedDate":{
48294829
"shape":"CreatedDateFilter",
48304830
"documentation":"<p>Filter opportunities by creation date criteria.</p>"
4831+
},
4832+
"TargetCloseDate":{
4833+
"shape":"TargetCloseDateFilter",
4834+
"documentation":"<p>Filters opportunities based on their target close date. This filter helps retrieve opportunities with an expected close date before or after a specified date.</p>"
48314835
}
48324836
}
48334837
},
@@ -5405,7 +5409,8 @@
54055409
"LastModifiedDate",
54065410
"Identifier",
54075411
"CustomerCompanyName",
5408-
"CreatedDate"
5412+
"CreatedDate",
5413+
"TargetCloseDate"
54095414
]
54105415
},
54115416
"OpportunitySummaries":{
@@ -6587,6 +6592,20 @@
65876592
"type":"string",
65886593
"pattern":"(?=.{1,1000}$)arn:[\\w+=/,.@-]+:partnercentral:[\\w+=/,.@-]*:[0-9]{12}:catalog/([a-zA-Z]+)/[\\w+=,.@-]+(/[\\w+=,.@-]+)*"
65896594
},
6595+
"TargetCloseDateFilter":{
6596+
"type":"structure",
6597+
"members":{
6598+
"AfterTargetCloseDate":{
6599+
"shape":"Date",
6600+
"documentation":"<p>Filters opportunities with a target close date after this date. Use the <code>YYYY-MM-DD</code> format.</p>"
6601+
},
6602+
"BeforeTargetCloseDate":{
6603+
"shape":"Date",
6604+
"documentation":"<p>Filters opportunities with a target close date before this date. Use the <code>YYYY-MM-DD</code> format.</p>"
6605+
}
6606+
},
6607+
"documentation":"<p>Filters opportunities based on their target close date.</p>"
6608+
},
65906609
"TaskArn":{
65916610
"type":"string",
65926611
"pattern":"arn:.*"

0 commit comments

Comments
 (0)