logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
HIRECALL  
#1 Posted : Friday, January 11, 2019 3:09:23 PM(UTC)
HIRECALL

Rank: Newbie

Groups: Registered
Joined: 1/11/2019(UTC)
Posts: 3
United States
Location: 36.0593919,-95.9739275,

We (HireCall) have purchased your software and are looking to implement your API into our system. Where can I find your documentation, WSDL and connection information?
aarony  
#2 Posted : Friday, January 11, 2019 4:36:57 PM(UTC)
aarony

Rank: Administration

Groups: Administrators, Moderator, Registered
Joined: 2/28/2018(UTC)
Posts: 50
Location: Red Wing, MN

Was thanked: 3 time(s) in 3 post(s)
CenterPoint doesn't provide a web-based API, the API consists of several .NET Framework assemblies used by CenterPoint.
You can reference these assemblies to perform actions you would otherwise have to do manually through the CenterPoint User Interface.

The documentation for this API can be installed by selecting a custom installation through the CenterPoint installer and including the Documentation > API Documentation feature.

HIRECALL  
#3 Posted : Friday, January 11, 2019 5:11:03 PM(UTC)
HIRECALL

Rank: Newbie

Groups: Registered
Joined: 1/11/2019(UTC)
Posts: 3
United States
Location: 36.0593919,-95.9739275,

Thank you I will look into the documentation and see what I will need to do to get this working.

We are grabbing that documentation now. I am trying to interface with a cloud based PHP application that we are building. I assume the .NET API accepts XML, would I be able to setup network connectivity though the Centerpoint API so I can access it remotely? Have it listen on a local port for incoming XML or something of the like?
aarony  
#4 Posted : Friday, January 11, 2019 5:19:59 PM(UTC)
aarony

Rank: Administration

Groups: Administrators, Moderator, Registered
Joined: 2/28/2018(UTC)
Posts: 50
Location: Red Wing, MN

Was thanked: 3 time(s) in 3 post(s)
The API exposes a set of Classes that you can use to programmatically enter data into CenterPoint, there is no Listener or Method that would accept XML data and process it.
That is something you would need to create.

Based on what you've said, I would expect that you'd create a new desktop application that references the CenterPoint API.
Your application would then listen for incoming data from your Cloud-based application (or poll it for said data.)
Once you have the data, your application would configure a CenterPoint model provided by our API which can then be saved to CenterPoint.
mikez  
#5 Posted : Tuesday, April 23, 2019 3:02:39 PM(UTC)
mikez

Rank: Administration

Groups: Administrators, Moderator
Joined: 11/2/2017(UTC)
Posts: 11
United States

Was thanked: 1 time(s) in 1 post(s)
Microsoft .NET Framework Technology Update
In our first planned release of 2019 (typically in the April/May) time frame, the Microsoft .NET Framework will be upgraded to version 4.7.2. Keeping current with technologies like Microsoft .NET Framework allows Red Wing Software to continue to provide our customers with the best experience possible when using our products.
If you have developed an interface to CenterPoint using our API, you will need to update your application to target Microsoft .NET Framework version 4.7.2 in order to continue to integrate after this release of CenterPoint in 2019.
ward@hollyyashi.com  
#6 Posted : Monday, September 23, 2019 10:22:40 PM(UTC)
ward@hollyyashi.com

Rank: Advanced Member

Groups: Registered
Joined: 8/30/2019(UTC)
Posts: 33
United States
Location: Arcata, California

Thanks: 2 times
We have a homegrown manufacturing system that is integrated with TurningPoint. We'd like to switch to CenterPoint, but I need to be able to examine, and hopefully practice with, the API in order to know whether it will be possible to make the switch. We haven't purchased CenterPoint yet, so I don't have an Installer that I can use to view the documentation. How can I get access to the API and its documentation?
aarony  
#7 Posted : Tuesday, September 24, 2019 5:08:11 PM(UTC)
aarony

Rank: Administration

Groups: Administrators, Moderator, Registered
Joined: 2/28/2018(UTC)
Posts: 50
Location: Red Wing, MN

Was thanked: 3 time(s) in 3 post(s)
Ward,

I've talked to Matt in Sales whom I believe you have talked to before via email, he is going to get you setup with a download of CenterPoint so you can get the API, Documentation and Import/Export tools installed.

Regards,

- Aaron.
ward@hollyyashi.com  
#8 Posted : Monday, September 30, 2019 12:30:10 AM(UTC)
ward@hollyyashi.com

Rank: Advanced Member

Groups: Registered
Joined: 8/30/2019(UTC)
Posts: 33
United States
Location: Arcata, California

Thanks: 2 times
OK, I see the API help file with the RedwingSoftware.CenterPoint.Api and 500 or so classes and enumerations. But I don't see any explanations or examples. For us to use CenterPoint, I will need to create a variety of VBA routines to transfer data back and forth between the CP database and MS Access. For example, we will need to be able to upload invoices and create new customers. Is any other documentation available that would help someone get started using the API? Any VB or VBA code samples that Redwing (or other developers) would be willing to share?
aarony  
#9 Posted : Monday, September 30, 2019 2:22:36 PM(UTC)
aarony

Rank: Administration

Groups: Administrators, Moderator, Registered
Joined: 2/28/2018(UTC)
Posts: 50
Location: Red Wing, MN

Was thanked: 3 time(s) in 3 post(s)
The main classes of interest in the API would be the Presenter classes, for example, the NamePresenter can be used for adding Customers and the CustomerInvoicePresenter can be used for adding Customer Invoices. Both have some example code, though it's C#, not VB, but the translation should be fairly straightforward.
For bulk importing of data to CenterPoint you may be more interested in the CenterPoint Data Importer tool which allows you to import data from CSV files.
tony  
#10 Posted : Monday, September 30, 2019 6:52:08 PM(UTC)
tony

Rank: Advanced Member

Groups: Registered
Joined: 2/28/2018(UTC)
Posts: 48
United States
Location: Pennsylvani mostly

Was thanked: 7 time(s) in 7 post(s)
I wouldn't suggest trying to access the API from VBA because you'd have to write COM wrappers and, of course, deal with all the trouble associated with COM. And you'd have to write a certain amount of .NET code along way.

To get data out of CenterPoint, I'd take a look at the Data Browser. There's documentation for the Data Browser on the forum. You can call the Data Browser via the shell command. You don't have to anything about the underlying API to use it.

To put data into CenterPoint, I'd suggest the Data Importer. Again, there's documentation for the Data Importer on the forum too. And, like the Data Browser, you can call it via the shell command without knowing anything about the API. It works by importing a CSV file into CenterPoint.

It'd be much easier to use the command-line-driven interfaces if possible.

ward@hollyyashi.com  
#11 Posted : Tuesday, October 1, 2019 2:17:04 AM(UTC)
ward@hollyyashi.com

Rank: Advanced Member

Groups: Registered
Joined: 8/30/2019(UTC)
Posts: 33
United States
Location: Arcata, California

Thanks: 2 times
Thanks, I'll check those out.
alodge  
#12 Posted : Wednesday, November 20, 2019 11:52:04 PM(UTC)
alodge

Rank: Newbie

Groups: Registered
Joined: 11/20/2019(UTC)
Posts: 1
United States
Location: Oregon

Hello,
We are working with a prospective client for our fleet management software who also uses Center Point and want to automate the data transfer from our system to yours (Customer, Employee, Vendor, Invoice, Voucher, Payroll, etc…) via exposed stored procedures. Would you be able to provide us with the API documentation? We’re experienced interfacing with several other accounting packages and want to start to work on the details with yours.
Best,
Andrew

Edited by user Wednesday, November 20, 2019 11:52:35 PM(UTC)  | Reason: Not specified

aarony  
#13 Posted : Thursday, November 21, 2019 2:11:35 PM(UTC)
aarony

Rank: Administration

Groups: Administrators, Moderator, Registered
Joined: 2/28/2018(UTC)
Posts: 50
Location: Red Wing, MN

Was thanked: 3 time(s) in 3 post(s)
Andrew,

You can install our API Documentation and Import/Export Tools through the product installer; select a custom installation and enable the appropriate features.
You can download an installer by filling out the form located here; https://www.redwingsoftware.com/home/demodownload-1222

Regards,

- Aaron.
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.