API Reference Transportation Services

Transportation Services

This service enables funding of a transportation account or card across multiple transportation providers .

Fetch Providers
GET

Service Information

{{baseUrl}}/transportation/services?loginId={{loginId}}&key={{publicKey}}
GET
Parameter Name Type M/O Description
loginId Numeric M Merchant id provided during integration
key String M Merchant’s (public) key

{
   "loginId": "{{loginId}}",
    "key": "{{publicKey}}",
}
{
    "statusCode": "00",
    "statusDescription": "Successful",
    "details": [
        {
            "serviceId": "T01N",
            "service": "CowryTransportation"
        }
    ]
}
Account Validation
GET

Service Information

{{baseUrl}}/transportation/verify_customer?loginId={{loginId}}&key={{publicKey}}&customerAccountId={{customerId}}&serviceId={{serviceId}}
GET
Parameter Name Type M/O Description
loginId Numeric M Merchant id provided during integration
key String M Merchants (public) key
customerAccountId String M Customer ID
ServiceId String M serviceId associated with fetch service
{
    "statusCode": "00",
    "statusDescription": "Successful",
    "details": {
        "customerName": "David OG",
        "customerId": "09058639550"
    }
}
Account Funding
POST

Service Information

{{baseUrl}}/transportation/vend
POST
Parameter Name Type M/O Description
loginId Numeric M Merchant id provided during integration
key String M Merchants (public) key
serviceId String M the service code for transportation
customerAccountId String M ID of the customer
requestId String M Unique Identifier for your request
amount Numeric M Amount to fund

{
    "loginId": "{{loginId}}",
    "key": "{{publicKey}}",
    "customerAccountId": "09058639550",
    "serviceId": "T01N",
    "amount": 100,
    "requestId": "{{random12digit}}"
}
                                {
    "statusCode": "00",
    "statusDescription": "Successful",
    "details": {
        "tranxId": "3250922480168273638",
        "amount": 100,
        "customerAccountId": "09058639550",
        "customerName": "David OG",
        "date": "2025-09-22T14:23:39"
    }
}