All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.buyexpressly.api.providers.ExpresslyApiEndpoint Maven / Gradle / Ivy

Go to download

Expressly Java SDK to integrate e-commerce platforms with the Expressly Network API

There is a newer version: 2.3.1
Show newest version
package com.buyexpressly.api.providers;

public enum ExpresslyApiEndpoint {
    PING("v1/merchant/ping"),
    REGISTER("v2/plugin/merchant"),
    UNINSTALL("v2/plugin/merchant/{uuid}"),
    POPUP_HTML("v2/migration/{uuid}"),
    CUSTOMER("v2/migration/{uuid}/user"),
    CONFIRM_MIGRATION("v2/migration/{uuid}/success"),
    GET_BANNER("v2/banner/{merchantUuid}");

    private final String endpoint;

    ExpresslyApiEndpoint(String endpoint) {
        this.endpoint = endpoint;
    }

    public String getEndpoint() {
        return endpoint;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy