POST api/v2.0/Ideation/Post

Create a new idea.

Request Information

URI Parameters

None.

Body Parameters

New idea to submit

NewIdeaRequest
NameDescriptionTypeAdditional information
Title

Title of the idea. Maximum length is 100 characters.

string

Required

Description

Description of the idea.

string

Required

IdeationStatusKey

Key for the status of the idea. Statuses are configurable on a per-site basis, the list of available statuses can be retrieved from the getStatuses endpoint.

globally unique identifier

Required

IdeationCategoryKeys

Keys for the categories the idea is associated to. Categories are configurable on a per-site basis, the list of available categories can be retrieved from the getCategories endpoint.

Collection of globally unique identifier

None.

IsAnonymous

True if the idea is being submitted anonymously.

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Title": "sample string 1",
  "Description": "sample string 2",
  "IdeationStatusKey": "26169413-2009-46ee-8691-2a03137b6c0f",
  "IdeationCategoryKeys": [
    "7fb915a6-bdcc-4097-9021-689fed78c211",
    "e068b08f-691c-4516-aa36-30c0322bda9d"
  ],
  "IsAnonymous": true
}

application/xml, text/xml

Sample:
<NewIdeaRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise.Ideation">
  <Description>sample string 2</Description>
  <IdeationCategoryKeys xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>7fb915a6-bdcc-4097-9021-689fed78c211</d2p1:guid>
    <d2p1:guid>e068b08f-691c-4516-aa36-30c0322bda9d</d2p1:guid>
  </IdeationCategoryKeys>
  <IdeationStatusKey>26169413-2009-46ee-8691-2a03137b6c0f</IdeationStatusKey>
  <IsAnonymous>true</IsAnonymous>
  <Title>sample string 1</Title>
</NewIdeaRequest>

Response Information

Resource Description

Submitted idea

IdeaDetails
NameDescriptionTypeAdditional information
IdeationKey

Unique identifier of the idea.

globally unique identifier

None.

Title

Title of the idea.

string

None.

Description

Description of the idea.

string

None.

LinkToViewIdea

Direct link to view the idea on the main microsite.

string

None.

Status

Object containing information about the status of the idea.

IdeaStatus

None.

Categories

All categories the idea has been associated to.

Collection of IdeaCategory

None.

TotalUpvotes

Number of upvotes.

integer

None.

TotalDownvotes

Number of downvotes.

integer

None.

HasOfficialComment

True if this idea has an official comment from an admin.

boolean

None.

Author

Information about the author of the idea.

ContactConcise

None.

IsAnonymous

True if the idea was submitted anonymously.

boolean

None.

CreatedOn

DateTime the idea was created.

date

None.

UpdatedOn

Most recent DateTime the idea was updated.

date

None.

AttachmentURLs

Temporary URLs to view or download any attachments associated with the idea.

Collection of IdeaAttachment

None.

Response Formats

application/json, text/json

Sample:
{
  "IdeationKey": "da279219-15b0-4bed-a543-9dabe9e2820c",
  "Title": "sample string 2",
  "Description": "sample string 3",
  "LinkToViewIdea": "sample string 4",
  "Status": null,
  "Categories": null,
  "TotalUpvotes": 5,
  "TotalDownvotes": 6,
  "HasOfficialComment": true,
  "Author": {
    "LinkToProfile": "sample string 1",
    "PictureUrl": "sample string 2",
    "ContactKey": "d0c25870-650f-4390-8395-ff1a1856fb45",
    "FirstName": "sample string 4",
    "LastName": "sample string 5",
    "DisplayName": "sample string 6",
    "EmailAddress": "sample string 7",
    "ContactStatusCode": "sample string 8",
    "PrefixCode": "sample string 9",
    "UpdatedOn": "2024-07-26T11:33:13.632961Z",
    "UpdatedByContactKey": "b1e7e5ee-0396-4712-ba3b-dedc001292e8",
    "CompanyName": "sample string 12",
    "CompanyTitle": "sample string 13",
    "SuffixCode": "sample string 14",
    "Designation": "sample string 15",
    "LegacyContactKey": "sample string 16",
    "InformalName": "sample string 17",
    "MiddleName": "sample string 18",
    "IsCompany": true,
    "CompanyLegacyContactKey": "sample string 20",
    "AMSDirectoryOptOut": true,
    "HLDirectoryOptOut": true,
    "HLContactMeOptOut": true,
    "LargePictureUrl": "sample string 24",
    "AgreedToTermsDateTime": "2024-07-26T11:33:13.632961Z"
  },
  "IsAnonymous": true,
  "CreatedOn": "2024-07-26T11:33:13.632961Z",
  "UpdatedOn": "2024-07-26T11:33:13.632961Z",
  "AttachmentURLs": null
}

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.