Skip to content

Instantly share code, notes, and snippets.

View IntuitDeveloperRelations's full-sized avatar

Intuit Partner Platform IntuitDeveloperRelations

View GitHub Profile
@IntuitDeveloperRelations
IntuitDeveloperRelations / V2-QBO-Check-Filter-DocNumber.cs
Last active December 23, 2015 04:39
IPP .NET DevKit v2 - QBO - Retrieve Check by DocNumber #DotNetDevKitV2 #Check #QBO
using Intuit.Ipp.Core;
using Intuit.Ipp.Data;
using Intuit.Ipp.Security;
using Intuit.Ipp.Services;
using Intuit.Ipp.Data.Extensions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@IntuitDeveloperRelations
IntuitDeveloperRelations / V3-QBO-Customer-Filter-DisplayName.cs
Last active March 12, 2018 04:09
IPP .NET SDK v3 - QBO - Retrieve Customer with DisplayName filter #IppDotNetSdkV3 #Customer #QBO #Filter
using Intuit.Ipp.Core;
using Intuit.Ipp.Data;
using Intuit.Ipp.LinqExtender;
using Intuit.Ipp.QueryFilter;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
static class SampleCalls
@IntuitDeveloperRelations
IntuitDeveloperRelations / V3-Platform-Disconnect.php
Last active December 26, 2015 08:38
IPP PHP SDK v3 - Platform - Disconnect
<?php
require_once('../config.php');
require_once(PATH_SDK_ROOT . 'Core/ServiceContext.php');
require_once(PATH_SDK_ROOT . 'PlatformService/PlatformService.php');
require_once(PATH_SDK_ROOT . 'Utility/Configuration/ConfigurationManager.php');
// Tell us whether to use your QBO vs QBD settings, from App.config
$serviceType = IntuitServicesType::QBD;
@IntuitDeveloperRelations
IntuitDeveloperRelations / V3-QBO-Batch-RequestId.java
Created October 29, 2013 16:21
IPP Java SDK v3 - QBO - Set Request Id for Batch operation #JavaSDKV3 #QBO #Batch
//Request Id support was added in 1.0.9
//https://developer.intuit.com/docs/0025_quickbooksapi/0050_data_services/v3/010_calling_data_services/00100_requests_and_responses/requestid
context = new Context(oauth, appToken, ServiceType.QBD, realmID);
Customer customer = new Customer();
customer.setGivenName("Mac Berry");
customer.setDisplayName("L 34");
BatchOperation batchOperation = new BatchOperation();
batchOperation.addEntity(customer, OperationEnum.CREATE, "12");
@IntuitDeveloperRelations
IntuitDeveloperRelations / IPP-Platform-Disconnect.cs
Created November 1, 2013 00:21
.NET DevDefined IPP Platform Disconnect Call
using DevDefined.OAuth.Consumer;
using DevDefined.OAuth.Framework;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Runtime.Serialization.Formatters.Binary;
using System.Net;
@IntuitDeveloperRelations
IntuitDeveloperRelations / IPP-Platform-Reconnect.cs
Last active December 3, 2017 01:27
.NET DevDefined IPP Platform Reconnect Call
using DevDefined.OAuth.Consumer;
using DevDefined.OAuth.Framework;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Runtime.Serialization.Formatters.Binary;
using System.Net;
@IntuitDeveloperRelations
IntuitDeveloperRelations / V3-Platform-Reconnect.php
Created January 7, 2014 00:55
IPP PHP SDK v3 - Platform - Reconnect
<?php
require_once('../config.php');
require_once(PATH_SDK_ROOT . 'Core/ServiceContext.php');
require_once(PATH_SDK_ROOT . 'PlatformService/PlatformService.php');
require_once(PATH_SDK_ROOT . 'Utility/Configuration/ConfigurationManager.php');
// Tell us whether to use your QBO vs QBD settings, from App.config
$serviceType = IntuitServicesType::QBD;
@IntuitDeveloperRelations
IntuitDeveloperRelations / V3-QBO-Report-Print.cs
Created April 14, 2014 18:31
IPP .NET SDK v3 - QBO - Retrieve Report and Print to Console #IppDotNetSdkV3 #Report #QBO
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Intuit.Ipp.Core;
using Intuit.Ipp.Data;
using Intuit.Ipp.ReportService;
static class SampleCalls
@IntuitDeveloperRelations
IntuitDeveloperRelations / QbApi-Entitlements.cs
Created May 28, 2014 19:17
QuickBooks API - .NET/DevDefined - Call QBO Entitlements API
using DevDefined.OAuth.Consumer;
using DevDefined.OAuth.Framework;
using System.IO;
using System.Text;
using System.Net;
namespace IPPQbApiConsoleApp
{
static class SampleCalls
{
<?php
# The MIT License (MIT)
#
# Copyright (c) 2014 Intuit Partner Platform
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
# the Software, and to permit persons to whom the Software is furnished to do so,