PowerChurch API?

Got a question or comment about PowerChurch that doesn't belong anywhere else? Why not post it here!?

Moderators: Moderators, Tech Support

Post Reply
mrbgty
Posts: 5
Joined: Tue Feb 05, 2008 11:53 am

PowerChurch API?

Post by mrbgty »

Sorry if this question is obvious. I can't seem to find it anywhere on the site.

Does PowerChurch have an API reference I can use to work with the program? Thanks a bunch.

Matt
Authorized Teaching Consultant
Authorized Teaching Consultant
Posts: 733
Joined: Fri Dec 05, 2003 4:04 pm
Location: Jacksonville, AL

Post by Matt »

What's an API reference?

mrbgty
Posts: 5
Joined: Tue Feb 05, 2008 11:53 am

Post by mrbgty »

Does PowerChurch provide an API(Application Program Interface) library to allow other programs to interact with it?

I was looking for a reference for one but I guess there might not be one at all. The API would allow someone to write a program that could call PowerChurch functions to execute various tasks.

Jeff
Program Development
Program Development
Posts: 1225
Joined: Fri Sep 05, 2003 11:43 am
Location: PowerChurch Software
Contact:

Post by Jeff »

There is no publicly exposed API for PowerChurch. If you let us know what you are trying to accomplish, we may be able to offer other suggestions to help.

mrbgty
Posts: 5
Joined: Tue Feb 05, 2008 11:53 am

Post by mrbgty »

It's OK. I want to pull transactions from an excel sheet and put them into PowerChurch. I know some other ways to do it but wanted to be sure there wasn't an API already.

thanks a bunch.

Jeff
Program Development
Program Development
Posts: 1225
Joined: Fri Sep 05, 2003 11:43 am
Location: PowerChurch Software
Contact:

Post by Jeff »

You can import general ledger transactions into Fund Accounting from a CSV or tab delimited file. This was originally developed to interface with a Canadian payroll company. Go to Accounting -> Fund Accounting -> Import Transactions. Press F1 on the dialog that is displayed and it will give you the file format that we are expecting.

mrbgty
Posts: 5
Joined: Tue Feb 05, 2008 11:53 am

Post by mrbgty »

Thanks, this may help. Is this the format I am to use?
For a successful import:

♦ The file must be in an ASCII format (comma separated or tab delimited).

♦ The header record must be the first line and must contain the names of the fields in the order they appear in the following layout:



Check number
Check number or reference number

Batch Date
Format: mm/dd/yy

Memo
Transaction description, 25 characters maximum

Account number
Format: FFMMMMSSS

Note: Do not use hyphens

Debit amount
Format: #########9.99

Credit amount
Format: #########9.99

From the text, It looks like the first line in the file should be this?
Check number Batch Date Memo Account number Debit amount Credit amount


I enter credits/debits into different account #'s, thought, so I'm not quite sure if this will work.

Jeff
Program Development
Program Development
Posts: 1225
Joined: Fri Sep 05, 2003 11:43 am
Location: PowerChurch Software
Contact:

Post by Jeff »

That is the correct format. For each transaction you are going to have at least 2 lines. The import would look like this.

Code: Select all

"CONTRIB.",03/26/2007,"Contributions 03/26/2007","011110000",985.00,0.00
"CONTRIB.",03/26/2007,"Contributions 03/26/2007","014030000",0.00,935.00
"CONTRIB.",03/26/2007,"Contributions 03/26/2007","014210100",0.00,50.00

mrbgty
Posts: 5
Joined: Tue Feb 05, 2008 11:53 am

Post by mrbgty »

Thank you. This is very helpful.

Post Reply