Footer Section
Explore

Records of any type can be created with the generic create record endpoint. The type of record to be created will match the 'object' path variable. The data for the record or multiple records must be passed into the body of the request.
Request body can be a single record or an array of records to be created.
Name of the object type this request is referencing.
The name of the storefront used for the request.
curl --request POST \--url https://documentation.conga.com/object \--header 'Accept: application/json' \--header 'Authorization: Basic 123' \--header 'Content-Type: application/json' \--header 'x-storefront: '
1{2"title": "success",3"status": 200,4"data": [5{6"UseType": "Main",7"BusinessObjectProfile": "Regular",8"IsValidationPending": false,9"IsTaskPending": false,10"ShipToAccountId": "0011900000hnGsrAAE",11"BillToAccountId": "0011900000hnGsrAAE",12"EffectivePriceListId": "a171T000005il1XQAQ",13"NumberOfItems": 0,14"BaseRelationCount": 0,15"SummaryGroupType": "Category",16"Status": "New",17"PriceListId": "a171T000005il1XQAQ",18"IsTransient": true,19"IsPricePending": false,20"EffectiveDate": "2020-01-01T04:54:32.577Z",21"BusinessObjectType": "Agreement",22"AccountId": "0011900000hnGsrAAE",23"LastReferencedDate": "2020-01-07T15:27:50.000Z",24"LastViewedDate": "2020-01-07T15:27:50.000Z",25"SystemModstamp": "2020-01-07T15:27:49.000Z",26"LastModifiedById": "00523000001ESiJAAW",27"LastModifiedDate": "2020-01-07T15:27:49.000Z",28"CreatedById": "00523000001ESiJAAW",29"CreatedDate": "2020-01-07T15:27:49.000Z",30"CurrencyIsoCode": "USD",31"Name": "Demo Cart",32"IsDeleted": false,33"OwnerId": "00523000001ESiJAAW",34"Id": "a1I3I0000004CrpUAE"35}36]37}