npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

workday-api

v1.0.1

Published

Downloads

14

Readme

Example payment page

https://accounts.siteminder.com/createPaymentMethod/A00024615/INV00656844

WD SOAP API

https://app.apiary.io/billingworkday/editor

https://wd3-impl-services1.workday.com/ccx/service/siteminder4/Revenue_Management/v29.0?wsdl

<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"> env:Header <wsse:Security env:mustUnderstand="1"> wsse:UsernameToken wsse:UsernameSM_Platform_User@siteminder4</wsse:Username> <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">Workday3!</wsse:Password> </wsse:UsernameToken> </wsse:Security> </env:Header> env:Body <wd:Get_Customers_Request xmlns:wd="urn:com.workday/bsvc" wd:version="v30.0"> wd:Request_References wd:Customer_Reference <wd:ID wd:type="Customer_Reference_ID"> 001D0000010UbGVIA0 </wd:ID> </wd:Customer_Reference> </wd:Request_References> wd:Response_Filter wd:Page1</wd:Page> wd:Count1</wd:Count> </wd:Response_Filter> wd:Response_Group wd:Include_Referencetrue</wd:Include_Reference> wd:Include_Customer_Datatrue</wd:Include_Customer_Data> wd:Include_Customer_Balancetrue</wd:Include_Customer_Balance> wd:Include_Customer_Activity_Detailtrue</wd:Include_Customer_Activity_Detail> </wd:Response_Group> </wd:Get_Customers_Request> </env:Body> </env:Envelope>

Finance stuff

company (3 legal entityes) va

contract linked to a customer = (zuora) subscription /plan

Payment page rules

emea: adyen dd or cc amer: adyen dd or cc asia: USD - CC asia: AUD - dd (ippayments) or cc (adyen)

Customer_Reference_ID = sf account id Customer_ID = zuora id for existing OR for new ones sf id

WorkDay API

GET CUSTOMER: wd:Get_Customers_Request name --- Customer:Customer_Data:Customer_Name

GET INVOICE

company hierarchy (values: EMEA, asiaPaccific, AMER) --- inv number --- due date --- currency --- amount due --- billed to customer - > name --- payment type (value: Adyen) ---

DebtCollector API

to generate token use https://jwt.io/

.../api/v1/payments

Headers: Content-Type: application/json Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYW1lIjoiMTExIn0.8MrJkKFpDDDtWp4Ux5nFkGr6iEeDH545_HWeNwt85OI

Body:

{ "workdayId": "Customer_Reference_ID", "invoiceNumber": "invoice_ID" }

Response 200 - OK

400 - Request validation errors

401 - Invalid token

403 - Authorization token required

422 - Data validation error