HTTPMethod

public enum HTTPMethod : String

The HTTP verbs used by the Spotify Web API.

See the API Requests Guide for more details.

  • GET

    Used for retrieving resources.

    Declaration

    Swift

    case GET
  • Used for creating resources.

    Declaration

    Swift

    case POST
  • PUT

    Used for changing/replacing resources or collections.

    Declaration

    Swift

    case PUT
  • Used for deleting resources.

    Declaration

    Swift

    case DELETE